@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.
@@ -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?: "h2" | "h3" | "h1" | "h4" | "h5" | "h6" | null | undefined;
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>>;