@steambrew/client
Version:
A support library for creating plugins with Millennium.
18 lines (17 loc) • 622 B
TypeScript
import { FC, ReactNode } from 'react';
import { DialogCommonProps } from './Dialog';
import { FooterLegendProps } from './FooterLegend';
export interface DialogCheckboxProps extends DialogCommonProps, FooterLegendProps {
onChange?(checked: boolean): void;
label?: ReactNode;
description?: ReactNode;
disabled?: boolean;
tooltip?: string;
color?: string;
highlightColor?: string;
bottomSeparator?: 'standard' | 'thick' | 'none';
controlled?: boolean;
checked?: boolean;
onClick?(evt: Event): void;
}
export declare const DialogCheckbox: FC<DialogCheckboxProps>;