File size: 325 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"
export default {
title: "Components / Checkmark",
decorators: [
(Story) => (
<Box p="10">
<Story />
</Box>
),
],
} satisfies Meta
export { CheckmarkBasic as Basic } from "compositions/examples/checkmark-basic"
|