avvvatars-react
Version:
generates unique placeholder avatars with either characters or shapes for your react project
16 lines (15 loc) • 387 B
TypeScript
/// <reference types="react" />
declare type Style = 'character' | 'shape';
interface Params {
displayValue?: string;
value: string;
size?: number;
shadow?: boolean;
style?: Style;
border?: boolean;
borderSize?: number;
borderColor?: string;
radius?: number;
}
export default function Avvvatars(params: Params): JSX.Element;
export {};