File size: 1,271 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
26
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"

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

export { AlertBasic as Basic } from "compositions/examples/alert-basic"
export { AlertSizeTable as Sizes } from "compositions/examples/alert-size-table"
export { AlertVariantTable as Variants } from "compositions/examples/alert-variant-table"
export { AlertWithButtons as Buttons } from "compositions/examples/alert-with-buttons"
export { AlertWithCloseButton as CloseButton } from "compositions/examples/alert-with-close-button"
export { AlertWithColorPaletteOverride as ColorPaletteOverride } from "compositions/examples/alert-with-color-palette-override"
export { AlertWithCustomIcon as CustomIcon } from "compositions/examples/alert-with-custom-icon"
export { AlertWithCustomization as Customization } from "compositions/examples/alert-with-customization"
export { AlertWithDescription as Description } from "compositions/examples/alert-with-description"
export { AlertWithSpinner as Spinner } from "compositions/examples/alert-with-spinner"
export { AlertWithStatus as Status } from "compositions/examples/alert-with-status"