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

22 lines (19 loc) 651 B
import * as React from 'react'; import TooltipOptions from '../tooltip/TooltipOptions'; interface RadioButtonProps { id?: string; inputId?: string; name?: string; value?: any; checked?: boolean; style?: object; className?: string; disabled?: boolean; required?: boolean; tabIndex?: number; tooltip?: any; tooltipOptions?: TooltipOptions; ariaLabelledBy?: string; onChange?(e: {originalEvent: Event, value: any, checked: boolean, target: {type: string, name: string, id: string, value: any, checked: boolean}}): void; } export class RadioButton extends React.Component<RadioButtonProps,any> {}