UNPKG

593 BTypeScriptView Raw
1import { type HTMLChakraProps, type RecipeProps, type UnstyledProp } from "../../styled-system";
2export interface CheckmarkProps extends HTMLChakraProps<"svg", RecipeProps<"checkmark">>, UnstyledProp {
3 /**
4 * Whether the checkmark is checked
5 */
6 checked?: boolean;
7 /**
8 * Whether the checkmark is indeterminate
9 */
10 indeterminate?: boolean;
11 /**
12 * Whether the checkmark is disabled
13 */
14 disabled?: boolean;
15}
16export declare const Checkmark: import("react").ForwardRefExoticComponent<CheckmarkProps & import("react").RefAttributes<SVGSVGElement>>;