@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
16 lines (15 loc) • 437 B
TypeScript
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;
}