import type { Meta, StoryObj } from '@storybook/react'; import { InfoCard } from '@views/components/common/InfoCard/InfoCard'; const meta = { title: 'Components/Common/InfoCard', component: InfoCard, parameters: { layout: 'centered', }, tags: ['autodocs'], argTypes: { titleText: { control: 'text' }, bodyText: { control: 'text' }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { titleText: 'WAITLIST SIZE', bodyText: '14 Students', }, };