import React from "react"; import { Meta, StoryObj } from "@storybook/react"; import { DismissableBanner, ErrorBanner, WarningBanner } from "."; import { getCssProps } from "@sb/cssprops"; import { RenderPropsArgTypes } from "@sb/helpers"; import { fn } from "@storybook/test"; export default { title: "Banners/DismissableBanner", component: DismissableBanner, parameters: { cssprops: getCssProps("Banner"), }, argTypes: { ...RenderPropsArgTypes, variant: { control: "select", options: ["info", "warning", "success", "error"], }, iconVariant: { control: "select", options: ["default", "outlined", "rounded", "two-tone", "sharp"], }, }, } as Meta; type Story = StoryObj; export const Info: Story = { args: { children: "Notification Settings Saved", variant: "info", icon: "info", onDismiss: fn(), }, }; export const Error: Story = { render: (props) => , args: { children: "Something went wrong", }, }; export const Warning: Story = { render: (props) => , args: { children: "Something went wrong", }, };