@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
6 lines (5 loc) • 303 B
TypeScript
export interface CloseIconProps extends React.ComponentPropsWithoutRef<'svg'> {
/** Icon width and height, `var(--icon-size)` by default */
size?: string;
}
export declare const CloseIcon: import("react").ForwardRefExoticComponent<CloseIconProps & import("react").RefAttributes<SVGSVGElement>>;