react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 515 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoGistSecret extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m10 27.5l5 7.5h-10l-2.5-10 10-2.5-2.5 5z m17.5-5l2.5 5-5 7.5h10l2.5-10-10-2.5z m-3.2 0h-8.5l1.7 4-2.5 8.5h10l-2.5-8.5 1.8-4z m3.2-7.5h-15l-5 2.5h25l-5-2.5z m-2.5-10l-5 2.5-5-2.5-2.5 7.5h15l-2.5-7.5z"/></g>
</IconBase>
);
}
}