import type { Meta, StoryObj } from '@storybook/react'; import { Collapsible, CollapsibleContent, CollapsibleTrigger } from './collapsible'; import { Button } from '../button'; import { ChevronsUpDown } from 'lucide-react'; import React, { useState } from 'react'; const meta: Meta = { title: 'UI/Collapsible', component: Collapsible, render: args => , argTypes: { open: { control: 'boolean', description: 'Whether the collapsible is open.', }, disabled: { control: 'boolean', description: 'Whether the collapsible is disabled.', }, }, }; export default meta; type Story = StoryObj; export const Default: Story = { render: args => (

@peduarte starred 3 repositories

@radix-ui/primitives
@radix-ui/colors
@stitches/react
), };