sate-lib
Version:
A lightweight and modular React component library designed for modern web interfaces. **SATE Lib** powers the [sate.menu](https://sate.menu) platform with reusable, scalable, and themeable UI components.
15 lines • 525 B
TypeScript
export declare function getInitials(name?: string): string;
type AvatarSize = "small" | "medium" | "large";
type AvatarShape = "circle" | "rounded";
export interface AvatarProps {
src?: string;
alt?: string;
name?: string;
size?: AvatarSize;
shape?: AvatarShape;
border?: boolean;
className?: string;
}
export declare function Avatar({ src, alt, name, size, shape, border, className, ...rest }: AvatarProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=avatar.d.ts.map