UNPKG

@payfit/unity-components

Version:

14 lines (13 loc) 482 B
export interface CheckboxIndicatorProps { isDisabled?: boolean; isSelected?: boolean; isIndeterminate?: boolean; isInvalid?: boolean; isReadOnly?: boolean; className?: string; } declare function CheckboxIndicator({ isSelected, isDisabled, isIndeterminate, isInvalid, isReadOnly, className, }: CheckboxIndicatorProps): import("react/jsx-runtime").JSX.Element; declare namespace CheckboxIndicator { var displayName: string; } export { CheckboxIndicator };