UNPKG

default-avatar

Version:

A customizable React component to generate default avatars with initials and themed colors.

4 lines (3 loc) 255 B
import React from "react"; import { AvatarProps } from "./types"; export default function Avatar({ name, fontFamily, size, shape, style, backgroundColor, textColor, fontSize, padding, useNameBasedColor, theme, ...rest }: AvatarProps): React.ReactElement;