@trail-ui/react
Version:
17 lines (14 loc) • 463 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
interface CheckboxIconProps {
'data-checked'?: string;
isSelected?: boolean;
isIndeterminate?: boolean;
isInvalid?: boolean;
className?: string;
}
/**
* CheckboxIcon is used to visually indicate the checked or indeterminate
* state of a checkbox.
*/
declare function CheckboxIcon(props: CheckboxIconProps): react_jsx_runtime.JSX.Element;
export { CheckboxIcon, CheckboxIconProps };