feat: switch button (#229)
* fix: font weight added * fix: change color hex * fix: change color again * fix: text-ut-burntorange * fix: importance (tailwind wise) * feat: switch button initial test * feat: look at how this switch goes back and forth very mindful very demure * fix: story * feat: using type now * chore: fix lint * feat: button custom function prop * fix: styling * chore: fix lint error and add JSDoc --------- Co-authored-by: doprz <52579214+doprz@users.noreply.github.com>
This commit is contained in:
20
src/stories/components/ToggleSwitch.stories.tsx
Normal file
20
src/stories/components/ToggleSwitch.stories.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { Meta, StoryObj } from '@storybook/react';
|
||||
import SwitchButton from '@views/components/common/SwitchButton';
|
||||
|
||||
const meta = {
|
||||
title: 'Components/Common/SwitchButton',
|
||||
component: SwitchButton,
|
||||
tags: ['autodocs'],
|
||||
parameters: {
|
||||
layout: 'centered',
|
||||
},
|
||||
} satisfies Meta<typeof SwitchButton>;
|
||||
|
||||
export default meta;
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
isChecked: true,
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user