import React, { forwardRef } from 'react' import PropTypes from 'prop-types' const Tags = forwardRef( ({ color = 'currentColor', size = 21, ...rest }, ref) => { return ( ) } ) Tags.propTypes = { color: PropTypes.string, size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]) } Tags.displayName = 'Tags' export default Tags