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