@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
16 lines (14 loc) • 317 B
JavaScript
const SvgStopRound = (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='M8 6h8c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2H8c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2z' />
</svg>
);
}
export default SvgStopRound;