import type { Meta, StoryObj } from "@storybook/react-vite"; import { InteractiveChip, type InteractiveChipProps } from "./InteractiveChip"; import { Icon } from "../icon/Icon"; const meta = { title: "Components/InteractiveChip", component: InteractiveChip, parameters: { layout: "centered", }, tags: ["autodocs"], } satisfies Meta; export default meta; type Story = StoryObj; const InteractiveChipComponent = (props: InteractiveChipProps) => { return ( } end={} > Click me ); }; export const Elevated: Story = { args: { chipType: "elevated", disabled: false, }, render: InteractiveChipComponent, }; export const Filled: Story = { args: { chipType: "filled", disabled: false, }, render: InteractiveChipComponent, };