cdbreact
Version:
Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps
21 lines (20 loc) • 557 B
TypeScript
/// <reference types="react" />
import PropTypes from "prop-types";
interface Props {
ariaLabel?: string;
className?: string;
onClick?: Function;
}
export declare const CloseIcon: {
(props: Props): 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 };