blob: bfec65e6b2a680490b49c97d709d8b454040630d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import type { 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({});
|