@octopusdeploy/design-system-components
Version:
The design systems component library.
13 lines (12 loc) • 391 B
TypeScript
interface MultiSelectCheckboxProps {
checked: boolean;
isDisabled?: boolean;
isIndeterminate?: boolean;
}
export declare function MultiSelectCheckbox({ checked, isDisabled, isIndeterminate }: MultiSelectCheckboxProps): import("react/jsx-runtime").JSX.Element;
export declare const checkboxStyles: {
container: string;
checked: string;
disabled: string;
};
export {};