import { Meta, StoryObj } from '@storybook/react-webpack5'; import Chevron from './Chevron'; export default { component: Chevron, title: 'Other/Chevron', } satisfies Meta; type Story = StoryObj; export const Basic: Story = { args: { orientation: 'top', size: 'md', }, render: (args) => { return ( ); }, };