import type { Meta, StoryObj } from '@storybook/web-components-vite';
import { html } from 'lit';
import { ifDefined } from 'lit/directives/if-defined.js';
import type { USAStepIndicatorElement } from './step-indicator.element.js';
// More on how to set up stories at: https://storybook.js.org/docs/writing-stories
const meta = {
title: 'usa-step-indicator',
tags: ['autodocs'],
render(args) {
return html`
Personal information
Household status
Supporting documents
Signature
Review and submit
`;
},
argTypes: {
counter: {
control: 'select',
options: ['on', 'small', null],
},
},
args: {
counter: 'on',
},
} 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: {},
};