import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import styles from './Icon.module.css'; function Icon({ icon, className, size = 'medium', ...props }) { return (
{icon}
); } Icon.propTypes = { className: PropTypes.string, icon: PropTypes.node.isRequired, size: PropTypes.oneOf(['xlarge', 'large', 'medium', 'small', 'xsmall']), }; export default Icon;