@mailstep/design-system 0.6.73-beta.5 → 0.6.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +0,0 @@
1
- import type { StoryObj } from '@storybook/react';
2
- declare const meta: {
3
- title: string;
4
- component: ({ img, body, children, color }: import("../types").CardComponentProps) => import("react/jsx-runtime").JSX.Element;
5
- tags: string[];
6
- argTypes: {};
7
- };
8
- export default meta;
9
- type Story = StoryObj<typeof meta>;
10
- export declare const Default: Story;
11
- export declare const ColoredCard: Story;
12
- export declare const CardWithoutImage: Story;
@@ -1,27 +0,0 @@
1
- import CardComponent from '../Card';
2
- var meta = {
3
- title: 'Elements/CardComponent',
4
- component: CardComponent,
5
- tags: ['autodocs'],
6
- argTypes: {},
7
- };
8
- export default meta;
9
- export var Default = {
10
- args: {
11
- img: 'http://via.placeholder.com/640x360',
12
- body: "Card body"
13
- },
14
- };
15
- export var ColoredCard = {
16
- args: {
17
- img: 'http://via.placeholder.com/640x360',
18
- body: "Card body",
19
- color: "success"
20
- },
21
- };
22
- export var CardWithoutImage = {
23
- args: {
24
- body: "Card body",
25
- color: "success"
26
- },
27
- };