UNPKG

primereact

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact) [![Discord Chat](https://img.shields.io/discord/5579

18 lines (15 loc) 382 B
import * as React from 'react'; interface AvatarProps { label?: string; icon?: string; image?: string; size?: string; shape?: string; style?: object; className?: string; template?: any; imageAlt?: string; onImageError?(event: Event): void; onClick?(event: Event): void; } export class Avatar extends React.Component<AvatarProps,any> {}