import type { Meta, StoryObj } from '@storybook/vue3-vite' import LargeRadioButton from '../../components/base/LargeRadioButton.vue' const meta = { title: 'Base/LargeRadioButton', // @ts-ignore component: LargeRadioButton, } satisfies Meta export default meta export const Default: StoryObj = { render: () => ({ components: { LargeRadioButton }, template: ` Unselected option `, }), } export const AllStates: StoryObj = { render: () => ({ components: { LargeRadioButton }, template: `
Unselected option Selected option Disabled unselected Disabled selected
`, }), }