@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 353 B
JavaScript
const SvgViewSidebar = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path fill='none' d='M0 0h24v24H0z' />
<path d='M16 20H2V4h14v16zm2-12h4V4h-4v4zm0 12h4v-4h-4v4zm0-6h4v-4h-4v4z' />
</svg>
);
}
export default SvgViewSidebar;