@modul/mbui 0.0.33 → 0.0.34-beta-pv-53449-37fa0cc9
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/Alert/index.js +1 -1
- package/dist/Checkbox/index.js +1 -1
- package/dist/Chip/Chip.d.ts +1 -1
- package/dist/Collapsible/index.js +1 -1
- package/dist/DatePicker/index.js +1 -1
- package/dist/Icon/icons/SbpColoredFull.d.ts +4 -0
- package/dist/Icon/icons/index.d.ts +1 -0
- package/dist/Icon/icons/index.js +1 -1
- package/dist/Icon/index.js +1 -1
- package/dist/Input-OTP/Input.d.ts +4 -4
- package/dist/Loading/index.js +1 -1
- package/dist/Page/index.js +1 -1
- package/dist/Select/components/index.js +1 -1
- package/dist/Select/index.js +1 -1
- package/dist/Toaster/index.js +1 -1
- package/dist/assets/css/global.css +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/Chip/Chip.d.ts
CHANGED
@@ -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?: "
|
4
|
+
variant?: "primary" | "secondary" | "success" | "primary-outline" | "outline" | "ghost";
|
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> {
|