UNPKG

react-avatar-gradient

Version:

A customizable React component for creating avatars with dynamic gradients and initials.

10 lines (9 loc) 224 B
import React from "react"; type AvatarGroupProps = { avatars: string[]; size?: number; shape?: "circle" | "square"; color?: string; }; export declare const AvatarGroup: React.FC<AvatarGroupProps>; export {};