UNPKG

552 BTypeScriptView Raw
1import React from 'react';
2interface CloseIconProps {
3 id?: string;
4 closeIcon?: React.ReactNode;
5 styles?: {
6 closeButton?: React.CSSProperties;
7 closeIcon?: React.CSSProperties;
8 };
9 classNames?: {
10 closeButton?: string;
11 closeIcon?: string;
12 };
13 classes: {
14 closeButton?: string;
15 };
16 onClickCloseIcon: () => void;
17}
18declare const CloseIcon: ({ classes, classNames, styles, id, closeIcon, onClickCloseIcon, }: CloseIconProps) => JSX.Element;
19export default CloseIcon;