@lotte-innovate/ui-component-test 0.2.0 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/globals.css +261089 -0
- package/dist/lib/Typography/Header/index.d.ts +1 -1
- package/dist/styles.css +32751 -0
- package/package.json +16 -7
@@ -6,7 +6,7 @@ export interface HeaderProps extends VariantProps<typeof headerVariants> {
|
|
6
6
|
}
|
7
7
|
declare let headerVariants: (props?: ({
|
8
8
|
weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
|
9
|
-
headers?: "
|
9
|
+
headers?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | null | undefined;
|
10
10
|
color?: string | null | undefined;
|
11
11
|
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
12
12
|
export declare const Header: React.ForwardRefExoticComponent<Omit<import("@radix-ui/themes").HeadingProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & HeaderProps & React.RefAttributes<HTMLHeadingElement>>;
|