@lctafrica/ui 1.0.12 → 1.0.13
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.
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
2
|
declare const memberPrivilegeAvatarVariants: (props?: ({
|
|
3
3
|
privilege?: "NORMAL" | "VIP" | "VVIP" | null | undefined;
|
|
4
|
+
size?: "md" | "lg" | null | undefined;
|
|
4
5
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
5
6
|
export type MemberPrivilegeAvatarProps = {
|
|
6
7
|
className?: string;
|
|
7
8
|
} & VariantProps<typeof memberPrivilegeAvatarVariants>;
|
|
8
|
-
export declare function MemberPrivilegeAvatar({ className, privilege, }: MemberPrivilegeAvatarProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare function MemberPrivilegeAvatar({ className, privilege, size, }: MemberPrivilegeAvatarProps): import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
export {};
|