@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
18 lines (16 loc) • 453 B
JavaScript
const SvgStoreTwoTone = (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='M5.64 9l-.6 3h13.92l-.6-3z' opacity={0.3} />
<path d='M4 4h16v2H4zm16 3H4l-1 5v2h1v6h10v-6h4v6h2v-6h1v-2l-1-5zm-8 11H6v-4h6v4zm-6.96-6l.6-3h12.72l.6 3H5.04z' />
</svg>
);
}
export default SvgStoreTwoTone;