UNPKG

react-avatar-gradient

Version:

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

10 lines (9 loc) 205 B
import React from "react"; type AvatarProps = { title: string; size?: number; shape?: "circle" | "square"; color?: string; }; export declare const Avatar: React.FC<AvatarProps>; export {};