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