react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 727 B
JSX
import React, { Component } from 'react';
export default class SofaIcon 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-sofa-icon ${this.props.className}`}><path d="M7 6h2a2 2 0 0 1 2 2v4H5V8a2 2 0 0 1 2-2zm8 0h2a2 2 0 0 1 2 2v4h-6V8a2 2 0 0 1 2-2zM1 9h1a1 1 0 0 1 1 1v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v9h-3v-2H3v2H0v-9a1 1 0 0 1 1-1z"/></svg>
)
}
}