UNPKG

boring-avatars

Version:

Boring avatars is a tiny JavaScript React library that generates custom, SVG-based, round avatars from any username and color palette.

9 lines (8 loc) 202 B
import { SVGProps } from 'react'; export type AvatarProps = { name: string; colors: string[]; title?: boolean; square?: boolean; size?: number | string; } & SVGProps<SVGSVGElement>;