@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
9 lines (8 loc) • 483 B
TypeScript
export interface CheckboxIconProps extends React.ComponentPropsWithoutRef<'svg'> {
indeterminate: boolean | undefined;
}
export interface CheckIconProps extends React.ComponentPropsWithoutRef<'svg'> {
size?: number | string;
}
export declare function CheckIcon({ size, style, ...others }: CheckIconProps): import("react/jsx-runtime").JSX.Element;
export declare function CheckboxIcon({ indeterminate, ...others }: CheckboxIconProps): import("react/jsx-runtime").JSX.Element;