* Rename ui to shared * Delete unused Switch component * Update stories with Figma links * Update Tag story naming for clarity * Update Toggle button story naming for clarity * Move shared components to the shared folder * Remove file as part of TS migration * Migrate jsx to tsx * Remove file as part of TS migration * Migrate jsx to tsx * Include necessary controls only * Auto SF GitOrigin-RevId: d2458eeffa7a6b67ce522c3ccb6b4f71e5e76d62
19 lines
428 B
TypeScript
19 lines
428 B
TypeScript
import LabeledDivider from '@/shared/components/labeled-divider'
|
|
import { Meta } from '@storybook/react'
|
|
|
|
type Args = React.ComponentProps<typeof LabeledDivider>
|
|
|
|
export const Default = (args: Args) => {
|
|
return <LabeledDivider {...args} />
|
|
}
|
|
|
|
const meta: Meta<typeof LabeledDivider> = {
|
|
title: 'Shared / Components / Labeled Divider',
|
|
component: LabeledDivider,
|
|
args: {
|
|
children: 'Text',
|
|
},
|
|
}
|
|
|
|
export default meta
|