@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
18 lines (16 loc) • 417 B
JavaScript
const SvgChairSharp = (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='M7 13h10V7h3V3H4v4h3z' />
<path d='M23 9h-4v6H5V9H1v10h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1h3V9z' />
</svg>
);
}
export default SvgChairSharp;