import type { Meta, StoryObj } from '@storybook/react'; import { ToggleGroup, ToggleGroupItem } from './toggle-group'; import { Bold, Italic, Underline, AlignLeft, AlignCenter, AlignRight } from 'lucide-react'; import React from 'react'; const meta: Meta = { title: 'UI/ToggleGroup', component: ToggleGroup, render: args => , argTypes: { type: { control: 'select', options: ['single', 'multiple'], }, variant: { control: 'select', options: ['default', 'outline'], }, size: { control: 'select', options: ['default', 'sm', 'lg'], }, }, }; export default meta; type Story = StoryObj; export const Single: Story = { args: { type: 'single', defaultValue: 'center', }, render: args => ( ), }; export const Multiple: Story = { args: { type: 'multiple', }, render: args => ( ), };