From 988f3c434908e05fabdbe27ca33d49102bb86470 Mon Sep 17 00:00:00 2001 From: -l Date: Mon, 13 Nov 2023 10:14:21 +0100 Subject: [PATCH] chore: adds Cards stories --- .../components/card/stories/Card.stories.tsx | 92 +++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 packages/dnb-eufemia/src/components/card/stories/Card.stories.tsx diff --git a/packages/dnb-eufemia/src/components/card/stories/Card.stories.tsx b/packages/dnb-eufemia/src/components/card/stories/Card.stories.tsx new file mode 100644 index 00000000000..3fd95c6f046 --- /dev/null +++ b/packages/dnb-eufemia/src/components/card/stories/Card.stories.tsx @@ -0,0 +1,92 @@ +/** + * @dnb/eufemia Component Story + * + */ + +import React from 'react' + +import { Field } from '../../../extensions/forms' +import { Card, Flex } from '../../' +import { Wrapper, Box } from 'storybook-utils/helpers' + +export default { + title: 'Eufemia/Components/Card', +} + +const AllFormFields = () => { + return ( + <> + + + + + + + + + + + + + + + + + + ) +} + +export const CardSandbox = () => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ) +}