@washingtonpost/wpds-box

> TODO: description

Usage no npm install needed!

<script type="module">
  import washingtonpostWpdsBox from 'https://cdn.skypack.dev/@washingtonpost/wpds-box';
</script>

README

Box

Quick prototyping in playroom, 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>
  );
};