@dojima-ui/types
Version:
common types utilised by dojima organisation for webpages.
12 lines (11 loc) • 390 B
TypeScript
/// <reference types="react" />
import { FormControlComponentProps } from './Common';
export declare type CheckboxSize = 'small' | 'medium' | undefined;
export interface CheckboxGroupComponentProps extends FormControlComponentProps {
options: any[];
state?: {} | any;
setState: React.Dispatch<any>;
horizontal?: boolean;
checkBoxSize?: CheckboxSize;
name: string;
}