export default Icon; /** * @returns {JSX} view */ declare function Icon({ children, color, size, viewBox }: { children: any; color: any; size: any; viewBox: any; }): any; declare namespace Icon { export namespace propTypes { export const children: PropTypes.Validator; export const color: PropTypes.Requireable; export const size: PropTypes.Requireable; export const viewBox: PropTypes.Requireable; } export namespace defaultProps { const color_1: null; export { color_1 as color }; const size_1: string; export { size_1 as size }; const viewBox_1: string; export { viewBox_1 as viewBox }; } } import PropTypes from "prop-types";