UNPKG

@wulperstudio/cms

Version:
16 lines (15 loc) 437 B
import { ReactNode } from 'react'; import { InputVariantType, InputSizeType, InputErrorProps } from '../../types'; export interface CheckBoxSimpleLabelOutPropsModel extends InputErrorProps { label: string; id?: string; name?: string; items: Array<{ label: string; value: string; }>; variant?: InputVariantType; size?: InputSizeType; backgroundColor?: string; helperNode?: ReactNode; }