@aintela/chat 0.2.17 → 0.2.20
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.
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type GuestIconVariant = 'silhueta' | 'tracejada' | 'interrogacao' | 'cracha' | 'login' | 'mascara';
|
|
3
|
+
export interface GuestIconProps {
|
|
4
|
+
variant?: GuestIconVariant;
|
|
5
|
+
size?: number;
|
|
6
|
+
strokeWidth?: number;
|
|
7
|
+
color?: string;
|
|
8
|
+
style?: React.CSSProperties;
|
|
9
|
+
}
|
|
10
|
+
export declare function GuestIcon({ variant, size, strokeWidth, color, style, }: GuestIconProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export type GuestAvatarTone = 'ink' | 'soft' | 'empty' | 'revertedInk';
|
|
12
|
+
export interface GuestAvatarProps {
|
|
13
|
+
variant?: GuestIconVariant;
|
|
14
|
+
tone?: GuestAvatarTone;
|
|
15
|
+
size?: number;
|
|
16
|
+
style?: React.CSSProperties;
|
|
17
|
+
}
|
|
18
|
+
export declare function GuestAvatar({ variant, tone, size, style, }: GuestAvatarProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export default GuestIcon;
|