import Component from '@glimmer/component'; /** A Checkbox component |Property|Type|description| |---|---|---| |color|string|| |disabled|boolean|| |label|string|Displays the text when the component is inline| |value|boolean/null|value of the checkbox. If _null_ is provided, it will display the indeterminate state| @class EmtCheckbox @public */ interface EmtCheckboxArgs { color: string disabled: boolean label: string value: boolean | null } export default class EmtCheckbox extends Component { constructor(owner: unknown, args: EmtCheckboxArgs) { super(owner, args); } }