scoped-css-react
v0.0.1
Published
Created components in styled syntax with @scope'd css
Downloads
4
Readme
scoped-css-react
A styled-like styling solution that lets you write @scope
'd css.
caniuse
Simple example
import { createScoped } from "scoped-css-react";
const Container = createScoped("main")`
:scope {
background: black;
}
a {
color: red;
}
`;
export default function App() {
return (
<Container>
<h1>
<span>Hey</span> there!
</h1>
</Container>
);
}
Use with other components
Your component needs to take a
children
prop
const StyledButton = createScope(Button)`
:scope {
color: red;
}
svg {
--size: 0.875rem;
}
`;
Props
const StyledButton = createScope(Button)`
:scope {
color: ${(props) =>
props.variant === "ghost" ? "black" : "white"};
}
svg {
--size: 0.875rem;
}
`;