@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
11 lines • 436 B
TypeScript
/// <reference types="react" />
import { ActionIconProps } from '../ActionIcon';
export interface CloseButtonProps extends Omit<ActionIconProps, 'children'> {
/** Width and height of cross icon */
iconSize?: number;
}
export declare function CloseButton({ iconSize, size, ...others }: CloseButtonProps): JSX.Element;
export declare namespace CloseButton {
var displayName: string;
}
//# sourceMappingURL=CloseButton.d.ts.map