UNPKG

react-life-design

Version:
17 lines (16 loc) 433 B
import * as React from 'react'; export interface IProps { checked?: boolean; value?: string; name?: string; autoFocus?: any; disabled?: boolean; required?: boolean; onChange?: (event?: any) => void; id: string; label: string; css?: string; isClassic?: boolean; } declare const _default: React.MemoExoticComponent<({ id, label, ...props }: IProps) => JSX.Element>; export default _default;