LmnCheckboxChange
No documentation has been provided.
Presentation
type LmnCheckboxChange = {
/** The checkbox value for the event. */
value?: string;
/** The current `indeterminate` state of the checkbox. */
indeterminate: boolean;
/** The new `checked` value of the checkbox. */
checked: boolean;
/** The source event for the checkbox. */
event: MouseEvent;
};