@washingtonpost/wpds-box
v1.24.0
Published
WPDS Box component
Downloads
1,431
Keywords
Readme
Box
Quick prototyping in code sandboxes, and the like use the "Box" component
import * as T from "@washingtonpost/wpds-ui-kit";
export const MyBox = () => {
return (
<T.Box
as="h1"
css={{
color: "$primary",
}}
>
Hello, World!
</T.Box>
);
};