legion-vue-core
Version:
33 lines (31 loc) • 626 B
TypeScript
import { SIZE } from '../../utilities/constant';
export interface CheckboxProps {
/**
* Sets the checked of the component
*/
checked?: boolean;
/**
* Sets the disabled of the component
*/
disabled?: boolean;
/**
* Sets the id of the component
*/
id?: string;
/**
* Sets the label of the component
*/
label?: string;
/**
* Sets the indeterminate of the component
*/
indeterminate?: boolean;
/**
* Sets the size of the component
*/
size?: SIZE;
/**
* Sets the value of the component
*/
value?: any;
}