semantic-ui-react
Version:
The official Semantic-UI-React integration.
22 lines (14 loc) • 518 B
TypeScript
import * as React from 'react'
import { RadioProps } from '../../addons/Radio'
import { FormFieldProps } from './FormField'
export interface FormRadioProps extends FormFieldProps, RadioProps {
[key: string]: any
/** An element type to render as (string or function). */
as?: any
/** A FormField control prop. */
control?: any
/** HTML input type, either checkbox or radio. */
type?: 'checkbox' | 'radio'
}
declare const FormRadio: React.StatelessComponent<FormRadioProps>
export default FormRadio