File size: 1,237 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 24 25 |
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"
export default {
title: "Components / Checkbox Card",
decorators: [
(Story) => (
<Box p="10">
<Story />
</Box>
),
],
} satisfies Meta
export { CheckboxCardBasic as Basic } from "compositions/examples/checkbox-card-basic"
export { CheckboxCardWithDescription as Description } from "compositions/examples/checkbox-card-with-description"
export { CheckboxCardDisabled as Disabled } from "compositions/examples/checkbox-card-disabled"
export { CheckboxCardWithStates as States } from "compositions/examples/checkbox-card-with-states"
export { CheckboxCardWithAddon as Addon } from "compositions/examples/checkbox-card-with-addon"
export { CheckboxCardWithIcon as Icon } from "compositions/examples/checkbox-card-with-icon"
export { CheckboxCardVariantTable as Variants } from "compositions/examples/checkbox-card-variant-table"
export { CheckboxCardSizeTable as Sizes } from "compositions/examples/checkbox-card-size-table"
export { CheckboxCardWithGroup as Group } from "compositions/examples/checkbox-card-with-group"
export { CheckboxCardNoIndicator as NoIndicator } from "compositions/examples/checkbox-card-no-indicator"
|