@agendize/design-system
Version:
Agendize web design system
21 lines • 735 B
TypeScript
export declare const AvatarSizeValues: string[];
export declare type AvatarSize = typeof AvatarSizeValues[number];
export declare const AvatarColorValues: string[];
export declare type AvatarColor = typeof AvatarColorValues[number];
export declare const AvatarShapeValues: string[];
export declare type AvatarShape = typeof AvatarShapeValues[number];
export interface AvatarProperties {
id?: string;
size?: AvatarSize;
color?: AvatarColor;
shape?: AvatarShape;
clickable?: boolean;
initials?: string;
icon?: string;
iconSize?: string;
}
export interface AvatarEmits {
(eventName: 'action'): void;
}
export declare type AvatarPropertiesType = AvatarProperties;
//# sourceMappingURL=viewModel.d.ts.map