File size: 905 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"
export default {
title: "Layout / Box",
decorators: [
(Story) => (
<Box p="4">
<Story />
</Box>
),
],
} satisfies Meta
export { BoxBasic as Basic } from "compositions/examples/box-basic"
export { BoxWithPseudoProps as PseudoProps } from "compositions/examples/box-with-pseudo-props"
export { BoxWithHideBelow as HideBelow } from "compositions/examples/box-with-hide-below"
export { BoxWithHideFrom as HideFrom } from "compositions/examples/box-with-hide-from"
export { BoxWithShadow as Shadow } from "compositions/examples/box-with-shadow"
export { BoxWithBorder as Border } from "compositions/examples/box-with-border"
export { BoxWithAsProp as AsProp } from "compositions/examples/box-with-as-prop"
export { BoxPropertyCard as Composition } from "compositions/examples/box-property-card"
|