UNPKG

doj-react-adminlte

Version:

Simple and easy-to-use AdminLTE components for React

22 lines (15 loc) 492 B
import * as React from 'react'; export type RadioCheckedValue = boolean | number | string; export type RadioValue = boolean | number | string; export interface RadioProps { checkedValue?: RadioCheckedValue; disabled?: boolean; inline?: boolean; label: React.ReactNode; name: string; onChange?: (...args: any[])=>any; value: RadioValue; } export default class Radio extends React.Component<RadioProps, any> { render(): JSX.Element; }