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

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

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

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