interface InlineCheckboxButtonOptions {
    checked?: boolean;
    icon: string;
    iconOff?: string;
    onToggle?: ((checked: boolean) => void);
    title: string;
    toggleKey?: string;
}

Properties

checked?: boolean
icon: string
iconOff?: string
onToggle?: ((checked: boolean) => void)
title: string
toggleKey?: string