react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 763 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoHorizontalRule extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m9.9975 17.5h5v5h2.5000000000000018v-14.9975h-2.5v7.4975000000000005h-5v-7.4975000000000005h-2.4975000000000023v14.9975h2.4975000000000005v-5z m22.497500000000002 5v-5h-2.4974999999999987v5h2.4974999999999987z m0-7.5v-4.997499999999999h-2.4974999999999987v4.997499999999999h2.4974999999999987z m-7.497500000000002 0v-4.997499999999999h5v-2.5h-7.5v14.997499999999999h2.5v-5h5v-2.5h-5z m-17.497500000000002 17.5h24.994999999999997v-5h-24.994999999999997v5z"/></g>
</IconBase>
);
}
}