@modul/mbui 0.0.39-beta-pv-53878-a084f5dd → 0.0.39-beta-pv-53878-b7ae44e6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
3
  declare const chipVariants: (props?: {
4
- variant?: "outline" | "primary" | "secondary" | "success" | "primary-outline" | "ghost";
4
+ variant?: "outline" | "primary" | "secondary" | "ghost" | "success" | "primary-outline";
5
5
  size?: "lg" | "md" | "sm" | "xs" | "xxs";
6
6
  } & import("class-variance-authority/dist/types").ClassProp) => string;
7
7
  export interface IChipProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof chipVariants> {
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import bank from '../assets/images/logo/bank/logo.svg';
3
3
  interface ILogoProps extends React.ImgHTMLAttributes<HTMLImageElement> {
4
- variant?: bank;
4
+ variant?: typeof bank;
5
5
  }
6
6
  declare const Logo: React.FC<ILogoProps>;
7
7
  export default Logo;