export default function Example() {
return (
<Box
css={{
width: "100%",
}}
>
<Box
css={{
width: "100%",
display: "flex",
alignItems: "center",
gap: "$100",
marginBlock: "$200",
}}
>
<Box css={{ color: "$accessible", fontWeight: "$normal" }}>Default</Box>
<Divider />
</Box>
<Box
css={{
width: "100%",
display: "flex",
alignItems: "center",
gap: "$100",
marginBlock: "$200",
}}
>
<Box css={{ color: "$accessible", fontWeight: "$normal" }}>Strong</Box>
<Divider variant="strong" />
</Box>
</Box>
);
}
To enter the code editing mode, press Enter. To exit the edit mode, press Escape
You are editing the code. To exit the edit mode, press Escape