File size: 707 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"

export default {
  title: "Components / Icon Button",
  decorators: [
    (Story) => (
      <Box p="10">
        <Story />
      </Box>
    ),
  ],
} satisfies Meta

export { IconButtonBasic as Basic } from "compositions/examples/icon-button-basic"
export { IconButtonRounded as Rounded } from "compositions/examples/icon-button-rounded"
export { IconButtonWithColors as Colors } from "compositions/examples/icon-button-with-colors"
export { IconButtonWithSizes as Sizes } from "compositions/examples/icon-button-with-sizes"
export { IconButtonWithVariants as Variants } from "compositions/examples/icon-button-with-variants"