import React from 'react'; /** * icon heart * * @param props * @returns */ const IconWarning = (props = {}) => { // filled const { filled, ...rest } = props; // return jsx return filled ? ( ) : ( ); }; /** * icon heart */ export default IconWarning;