aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/main-nav-button.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/buttons/main-nav-button.stories.tsx')
-rw-r--r--src/components/molecules/buttons/main-nav-button.stories.tsx80
1 files changed, 0 insertions, 80 deletions
diff --git a/src/components/molecules/buttons/main-nav-button.stories.tsx b/src/components/molecules/buttons/main-nav-button.stories.tsx
deleted file mode 100644
index 39e495c..0000000
--- a/src/components/molecules/buttons/main-nav-button.stories.tsx
+++ /dev/null
@@ -1,80 +0,0 @@
-import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { useState } from 'react';
-import { IntlProvider } from 'react-intl';
-import MainNavButtonComponent from './main-nav-button';
-
-export default {
- title: 'Molecules/Buttons',
- component: MainNavButtonComponent,
- argTypes: {
- checkboxClassName: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the checkbox.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- isActive: {
- control: {
- type: null,
- },
- description: 'The button state.',
- type: {
- name: 'boolean',
- required: true,
- },
- },
- labelClassName: {
- control: {
- type: 'text',
- },
- description: 'Set additional classnames to the label.',
- table: {
- category: 'Styles',
- },
- type: {
- name: 'string',
- required: false,
- },
- },
- setIsActive: {
- control: {
- type: null,
- },
- description: 'A callback function to set the button state.',
- type: {
- name: 'function',
- required: true,
- },
- },
- },
-} as ComponentMeta<typeof MainNavButtonComponent>;
-
-const Template: ComponentStory<typeof MainNavButtonComponent> = ({
- isActive,
- setIsActive: _setIsActive,
- ...args
-}) => {
- const [isChecked, setIsChecked] = useState<boolean>(isActive);
-
- return (
- <IntlProvider locale="en">
- <MainNavButtonComponent
- isActive={isChecked}
- setIsActive={setIsChecked}
- {...args}
- />
- </IntlProvider>
- );
-};
-
-export const MainNavButton = Template.bind({});
-MainNavButton.args = {
- isActive: false,
-};