UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

9 lines (8 loc) 463 B
export interface CheckboxIconProps extends React.ComponentProps<'svg'> { indeterminate: boolean | undefined; } export interface CheckIconProps extends React.ComponentProps<'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;