UNPKG

react-name-initials-avatar

Version:
18 lines (15 loc) 432 B
import React from 'react'; interface NameInitialsAvatarProps { name: string; bgColor?: string; textColor?: string; textWeight?: string | number; textSize?: string; size?: string; borderRadius?: string; borderColor?: string; borderStyle?: string; borderWidth?: string; } declare const NameInitialsAvatar: (props: NameInitialsAvatarProps) => React.JSX.Element; export { NameInitialsAvatar };