react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 772 B
JSX
import React, { Component } from 'react';
export default class SquareRootIcon 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-square-root-icon ${this.props.className}`}><path d="M11.757 16.828L14.586 14l-2.829-2.828 1.415-1.415L16 12.586l2.828-2.829 1.415 1.415L17.414 14l2.829 2.828-1.415 1.415L16 15.414l-2.828 2.829-1.415-1.415zM2 11h3v.019l.007-.003 2.285 5.382L10 6h12v2H11.546L8.68 19H6.223l-2.547-6H2v-2z"/></svg>
)
}
}