From 3ff4c37a7a2c40340c17f9e6c1754444bce0f839 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 31 Oct 2023 16:00:45 +0100 Subject: refactor(components): rewrite Modal component * add an optional close button * add an icon prop --- src/components/atoms/modal/modal.stories.tsx | 59 ---------------------------- 1 file changed, 59 deletions(-) delete mode 100644 src/components/atoms/modal/modal.stories.tsx (limited to 'src/components/atoms/modal/modal.stories.tsx') diff --git a/src/components/atoms/modal/modal.stories.tsx b/src/components/atoms/modal/modal.stories.tsx deleted file mode 100644 index 0490a8f..0000000 --- a/src/components/atoms/modal/modal.stories.tsx +++ /dev/null @@ -1,59 +0,0 @@ -import type { ComponentMeta, ComponentStory } from '@storybook/react'; -import { Heading } from '../heading'; -import { Modal } from './modal'; - -/** - * Switch - Storybook Meta - */ -export default { - title: 'Atoms/Modals', - component: Modal, - args: {}, - argTypes: {}, -} as ComponentMeta; - -const Template: ComponentStory = (args) => ; - -/** - * Modal Stories - Primary - */ -export const Primary = Template.bind({}); -Primary.args = { - children: - 'Inventore natus dignissimos aut illum modi asperiores. Et voluptatibus delectus.', -}; - -/** - * Modal Stories - Primary With Heading - */ -export const PrimaryWithHeading = Template.bind({}); -PrimaryWithHeading.args = { - children: - 'Inventore natus dignissimos aut illum modi asperiores. Et voluptatibus delectus.', - heading: Aut provident eum, -}; - -/** - * Modal Stories - Secondary - */ -export const Secondary = Template.bind({}); -Secondary.args = { - children: - 'Inventore natus dignissimos aut illum modi asperiores. Et voluptatibus delectus.', - kind: 'secondary', -}; - -/** - * Modal Stories - Secondary with heading - */ -export const SecondaryWithHeading = Template.bind({}); -SecondaryWithHeading.args = { - children: - 'Inventore natus dignissimos aut illum modi asperiores. Et voluptatibus delectus.', - heading: ( - - Aut provident eum - - ), - kind: 'secondary', -}; -- cgit v1.2.3