react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 904 B
JSX
import React, { Component } from 'react';
export default class HangerIcon 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-hanger-icon ${this.props.className}`}><path fillRule="evenodd" d="M20.755 16.336v.001A2.499 2.499 0 0 1 19.5 21h-15a2.5 2.5 0 0 1-1.255-4.663L11 11.858S11 11 12 10c1 0 2-.895 2-2a2 2 0 1 0-4 0H8a4 4 0 1 1 5.018 3.87l7.737 4.466zM4.5 19h15a.5.5 0 0 0 .25-.933L12 13.592l-7.75 4.475A.5.5 0 0 0 4.5 19z"/><path fillRule="evenodd" d="M11 11.859L12 10a2 2 0 0 0 2-2"/><path fillRule="evenodd" d="M11 11.859L12 10a2 2 0 0 0 2-2"/></svg>
)
}
}