import React from "react"; import type { Meta, StoryObj } from "@storybook/react"; import { Chip as ChipComponent } from "../src/components/chip"; export default { title: "Data display/Chip", component: (props) => (
), } as Meta; export const Chip: StoryObj = { args: { children: "Chip example", size: "small", clickable: false, active: false, }, };