@useloops/design-system 1.4.182 → 1.4.183
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 +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1103,14 +1103,14 @@ interface HtmlProps {
|
|
|
1103
1103
|
}
|
|
1104
1104
|
declare const Html: FunctionComponent<HtmlProps>;
|
|
1105
1105
|
|
|
1106
|
-
interface TypographyProps {
|
|
1106
|
+
interface TypographyProps extends Omit<TypographyProps$1, 'ref'> {
|
|
1107
1107
|
clamp?: number;
|
|
1108
1108
|
component: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p';
|
|
1109
1109
|
type?: 'default' | 'button';
|
|
1110
1110
|
variation: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl';
|
|
1111
1111
|
weight?: 'default' | 'bold';
|
|
1112
1112
|
}
|
|
1113
|
-
declare const Typography: FunctionComponent<TypographyProps
|
|
1113
|
+
declare const Typography: FunctionComponent<TypographyProps>;
|
|
1114
1114
|
|
|
1115
1115
|
type HtmlParserProps = {
|
|
1116
1116
|
children: string;
|