UNPKG

react-name-initials-avatar

Version:
16 lines (15 loc) 441 B
import React from "react"; export 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 default NameInitialsAvatar;