@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
18 lines (16 loc) • 431 B
JavaScript
const SvgFlashlightOnOutlined = (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='M18 2H6v6l2 3v11h8V11l2-3V2zm-2 2v1H8V4h8zm-2 6.4V20h-4v-9.61l-2-3V7h8v.39l-2 3.01z' />
<circle cx={12} cy={14} r={1.5} />
</svg>
);
}
export default SvgFlashlightOnOutlined;