@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
18 lines (16 loc) • 435 B
JavaScript
const SvgViewCompactTwoTone = (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='M11 13h9v4h-9zm-6 0h4v4H5zm0-6h15v4H5z' opacity={0.3} />
<path d='M3 5v14h19V5H3zm6 12H5v-4h4v4zm11 0h-9v-4h9v4zm0-6H5V7h15v4z' />
</svg>
);
}
export default SvgViewCompactTwoTone;