react-life-design
Version:
Life Design UI components
16 lines (15 loc) • 408 B
TypeScript
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;
}
declare const _default: React.MemoExoticComponent<({ id, label, ...props }: IProps) => JSX.Element>;
export default _default;