import { Meta, StoryObj } from '@storybook/react'; import { CaretDown, Minus, Plus } from '@phosphor-icons/react'; import { ButtonGroup, Button, Flex, Popover, Menu } from '..'; const meta: Meta = { title: 'Opize Component/ButtonGroup', component: ButtonGroup, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Primary: Story = { args: {}, render: (args) => ( } > Popover "Hello, Opize Design System!" } > Menu alert('Option 1')}>Option 1 alert('Option 2')}>Option 2 alert('Option 1')}>Option 1 alert('Option 2')}>Option 2 ), };