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) 388 B
import * as React from 'react'; interface ChipProps { label?: string; icon?: string; image?: string; removable?: boolean; removeIcon?: string; className?: string; style?: object; template?: any; imageAlt?: string; onImageError?(event: Event): void; onRemove?(event: Event): void; } export class Chip extends React.Component<ChipProps,any> {}