cdbreact
Version:
Elegant UI kit and reusable components for building mobile-first, responsive websites and web apps
21 lines (20 loc) • 558 B
TypeScript
import React from "react";
import PropTypes from "prop-types";
interface Props {
ariaLabel?: string;
className?: string;
onClick?: Function;
}
export declare const CloseIcon: {
(props: Props): React.JSX.Element;
defaultProps: {
ariaLabel: string;
};
propTypes: {
ariaLabel: PropTypes.Requireable<string>;
className: PropTypes.Requireable<string>;
onClick: PropTypes.Requireable<(...args: any[]) => any>;
};
};
export default CloseIcon;
export { CloseIcon as CDBCloseIcon };