File size: 640 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"
export default {
title: "Components / Close Button",
decorators: [
(Story) => (
<Box p="10">
<Story />
</Box>
),
],
} satisfies Meta
export { CloseButtonBasic as Basic } from "compositions/examples/close-button-basic"
export { CloseButtonWithSizes as Sizes } from "compositions/examples/close-button-with-sizes"
export { CloseButtonWithVariants as Variants } from "compositions/examples/close-button-with-variants"
export { CloseButtonWithCustomIcon as CustomIcon } from "compositions/examples/close-button-with-custom-icon"
|