@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 481 B
JavaScript
const SvgFlashlightOnRound = (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='M6 4v1h12V4c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2zM6 7v1l2 3v9c0 1.1.9 2 2 2h4c1.1 0 2-.9 2-2v-9l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z' />
</svg>
);
}
export default SvgFlashlightOnRound;