aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/forms/theme-toggle/theme-toggle.stories.tsx
blob: ac228b41af5cbfce76306abbadd33b4cc332c92b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { ComponentMeta, ComponentStory } from '@storybook/react';
import { ThemeToggle } from './theme-toggle';

/**
 * ThemeToggle - Storybook Meta
 */
export default {
  title: 'Organisms/Forms/Toggle',
  component: ThemeToggle,
  argTypes: {},
} as ComponentMeta<typeof ThemeToggle>;

const Template: ComponentStory<typeof ThemeToggle> = (args) => (
  <ThemeToggle {...args} />
);

/**
 * Toggle Stories - Theme
 */
export const Theme = Template.bind({});