@20minutes/hela 2.0.5 → 2.1.0

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,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 06 Feb 2025 10:06:13 GMT
3
+ * Generated on Thu, 06 Feb 2025 13:46:05 GMT
4
4
  */
5
5
 
6
6
  $token-variables: (
@@ -1,7 +1,7 @@
1
1
 
2
2
  /**
3
3
  * Do not edit directly
4
- * Generated on Thu, 06 Feb 2025 10:06:13 GMT
4
+ * Generated on Thu, 06 Feb 2025 13:46:05 GMT
5
5
  */
6
6
 
7
7
  $infolocale: #4742ff !default;
@@ -0,0 +1,10 @@
1
+ import { default as React } from 'react';
2
+ import { FlexProps } from '../../../..';
3
+ export type CardNewsletterProps = Omit<FlexProps<'div'>, 'title'> & {
4
+ id: string;
5
+ title: string;
6
+ label: string;
7
+ imgUrl: string;
8
+ withBorderBottom?: boolean;
9
+ };
10
+ export declare const CardNewsletter: React.FC<CardNewsletterProps>;
@@ -0,0 +1,39 @@
1
+ import { StoryObj } from '@storybook/react';
2
+ declare const meta: {
3
+ title: string;
4
+ component: import('react').FC<import('./CardNewletter').CardNewsletterProps>;
5
+ args: {
6
+ id: string;
7
+ title: string;
8
+ label: string;
9
+ imgUrl: string;
10
+ };
11
+ argTypes: {
12
+ m?: import('@storybook/csf').InputType | undefined;
13
+ mt?: import('@storybook/csf').InputType | undefined;
14
+ mr?: import('@storybook/csf').InputType | undefined;
15
+ mb?: import('@storybook/csf').InputType | undefined;
16
+ ml?: import('@storybook/csf').InputType | undefined;
17
+ mx?: import('@storybook/csf').InputType | undefined;
18
+ my?: import('@storybook/csf').InputType | undefined;
19
+ p?: import('@storybook/csf').InputType | undefined;
20
+ pt?: import('@storybook/csf').InputType | undefined;
21
+ pr?: import('@storybook/csf').InputType | undefined;
22
+ pb?: import('@storybook/csf').InputType | undefined;
23
+ pl?: import('@storybook/csf').InputType | undefined;
24
+ px?: import('@storybook/csf').InputType | undefined;
25
+ py?: import('@storybook/csf').InputType | undefined;
26
+ borderColor?: import('@storybook/csf').InputType | undefined;
27
+ bg?: import('@storybook/csf').InputType | undefined;
28
+ color?: import('@storybook/csf').InputType | undefined;
29
+ radius?: import('@storybook/csf').InputType | undefined;
30
+ };
31
+ parameters: {
32
+ controls: {
33
+ exclude: string[];
34
+ };
35
+ };
36
+ };
37
+ export default meta;
38
+ type Story = StoryObj<typeof meta>;
39
+ export declare const Newsletter: Story;
@@ -0,0 +1 @@
1
+ export * from './CardNewletter';