enefit-design-system 0.0.5 → 0.0.8

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.
package/dist/index.d.ts CHANGED
@@ -1,8 +1,17 @@
1
1
  /// <reference types="react" />
2
2
 
3
3
  import { JSX as JSX_2 } from 'react';
4
+ import { ReactNode } from 'react';
4
5
  import { SVGProps } from 'react';
5
6
 
7
+ export declare function Heading({ variant, as, className, children, ...props }: {
8
+ variant: 'display' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'leadtext' | 'subheadline';
9
+ as?: React.ElementType;
10
+ className?: string;
11
+ children: ReactNode;
12
+ [key: string]: any;
13
+ }): JSX_2.Element;
14
+
6
15
  export declare function Hello(props: any): JSX_2.Element;
7
16
 
8
17
  export declare const IconAccidentHouseLg: (props: SVGProps<SVGSVGElement>) => JSX_2.Element;
@@ -1561,4 +1570,25 @@ export declare const IconXMd: (props: SVGProps<SVGSVGElement>) => JSX_2.Element;
1561
1570
 
1562
1571
  export declare const IconXXl: (props: SVGProps<SVGSVGElement>) => JSX_2.Element;
1563
1572
 
1573
+ export declare function Label({ size, weight, className, children, ...props }: {
1574
+ size?: 'tiny' | 'small' | 'default' | 'large';
1575
+ weight?: 400 | 600;
1576
+ className?: string;
1577
+ children: ReactNode;
1578
+ [key: string]: any;
1579
+ }): JSX_2.Element;
1580
+
1581
+ declare function Text_2({ variant, size, weight, italic, underline, as, className, children, ...props }: {
1582
+ variant?: 'p' | 'line';
1583
+ size?: 'tiny' | 'small' | 'default' | 'large';
1584
+ weight?: 400 | 600;
1585
+ italic?: boolean;
1586
+ underline?: boolean;
1587
+ as?: React.ElementType;
1588
+ className?: string;
1589
+ children: ReactNode;
1590
+ [key: string]: any;
1591
+ }): JSX_2.Element;
1592
+ export { Text_2 as Text }
1593
+
1564
1594
  export { }