UNPKG

react-icon-library

Version:

A library of SVG icons for use in reactJS projects

16 lines (15 loc) 317 B
import PropTypes from 'prop-types'; declare type IconProps = { iconName: string; color?: string; }; declare const Icon: { ({ iconName, color }: IconProps): any; defaultProps: { color: string; }; propTypes: { color: PropTypes.Requireable<string>; }; }; export default Icon;