import type { Meta, StoryObj } from '@storybook/web-components-vite';
import { html } from 'lit';
import type { USARadioElement } from './radio.element.js';
// More on how to set up stories at: https://storybook.js.org/docs/writing-stories
const meta = {
title: 'usa-radio',
tags: ['autodocs'],
render(args) {
return html`
Sojourner Truth
Frederick Douglass
This is optional text that can be used to describe the label in more detail.
Booker T. Washington
George Washington Carver
`;
},
argTypes: {},
args: {
tiled: true,
},
} satisfies Meta;
export default meta;
type Story = StoryObj;
// More on writing stories with args: https://storybook.js.org/docs/writing-stories/args
export const Primary: Story = {
args: {},
};