@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 444 B
JavaScript
const SvgLabelRound = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path d='M0 0h24v24H0V0z' fill='none' />
<path d='M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58a.99.99 0 000-1.16l-3.96-5.58z' />
</svg>
);
}
export default SvgLabelRound;