aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/forms/motion-toggle/motion-toggle.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/forms/motion-toggle/motion-toggle.stories.tsx')
-rw-r--r--src/components/organisms/forms/motion-toggle/motion-toggle.stories.tsx21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/components/organisms/forms/motion-toggle/motion-toggle.stories.tsx b/src/components/organisms/forms/motion-toggle/motion-toggle.stories.tsx
deleted file mode 100644
index 7adef1b..0000000
--- a/src/components/organisms/forms/motion-toggle/motion-toggle.stories.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-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 = {};