react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 1.42 kB
JSX
import React, { Component } from 'react';
export default class JsfiddleIcon 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-jsfiddle-icon ${this.props.className}`}><path fillRule="evenodd" d="M20.331 10.794c1.567.643 2.669 2.163 2.669 3.94C23 17.09 21.06 19 18.667 19H5.4C2.983 18.963 1 17.012 1 14.623c0-1.597.874-2.99 2.174-3.75a2.914 2.914 0 0 1-.137-.887c0-1.642 1.352-2.973 3.02-2.973.695 0 1.335.235 1.845.624a6.547 6.547 0 0 1 5.904-3.675c3.614 0 6.545 2.886 6.545 6.445 0 .13-.012.258-.02.387zm-11.116.06c-1.769 0-3.202 1.263-3.202 2.82s1.433 2.82 3.202 2.82c1.037 0 1.96-.434 2.544-1.107l-1.01-1.138c-.33.435-.976.74-1.534.74-.789 0-1.428-.589-1.428-1.315s.64-1.314 1.428-1.314c.471 0 .909.235 1.348.519.44.284 1.166 1.296 1.743 1.944 1.469 1.465 2.222 1.594 3.092 1.594 1.768 0 3.202-1.262 3.202-2.82 0-1.557-1.434-2.82-3.203-2.82-1.037 0-1.958.435-2.544 1.108l1.01 1.138c.33-.435.977-.74 1.535-.74.788 0 1.428.588 1.428 1.315 0 .725-.64 1.314-1.428 1.314-.471 0-.91-.235-1.348-.52-.44-.284-1.166-1.295-1.744-1.943-1.468-1.466-2.221-1.595-3.09-1.595z"/></svg>
)
}
}