react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 759 B
JSX
import React, { Component } from 'react';
export default class ChairSchoolIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-chair-school-icon ${this.props.className}`}><path d="M22 5v2h-4.991l-3.476 5H16v2h-1.537l3.706 8h-2.204l-.926-2H6.384l-1.033 2H3.1l4.133-8H7a1 1 0 0 1-.955-.704L2.868 3.84l.948-.319a1 1 0 0 1 1.266.63L7.72 12h4.378l3.476-5H12V5h10zM9.485 14l-2.067 4h6.694l-1.853-4H9.485z"/></svg>
)
}
}