@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
10 lines (9 loc) • 466 B
TypeScript
import React from 'react';
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): React.JSX.Element;
export declare function CheckboxIcon({ indeterminate, ...others }: CheckboxIconProps): React.JSX.Element;