import type { Meta, StoryObj } from '@storybook/react'; import Chip from '.'; const meta = { title: 'Chip', component: Chip, parameters: { layout: 'centered', }, tags: ['autodocs'], argTypes: { color: { options: ['primary', 'secondary', 'tertiary'] }, text: { control: 'text' }, variant: { options: ['outlined', 'filled'] }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Example: Story = { args: { color: 'primary', text: 'Hello, World!', variant: 'filled' }, };