react-name-initials-avatar
Version:
Creating Stylish Initial-Based Avatars in React
18 lines (15 loc) • 432 B
TypeScript
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 };