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

12 lines (9 loc) 324 B
import * as React from 'react'; interface ListBoxItemProps { option?: any; selected?: boolean; onClick?(e: {originalEvent: Event, option: any}): void; onTouchEnd?(e: {originalEvent: Event, option: any}): void; template?: any; } export class ListBoxItem extends React.Component<ListBoxItemProps,any> {}