react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 771 B
JSX
import React, { Component } from 'react';
export default class BoxCutterIcon 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-box-cutter-icon ${this.props.className}`}><path d="M7.222 11.906c-.33.33-.513.744-.565 1.172l5.515 2.364 8.485-8.486a1.996 1.996 0 0 0 0-2.828l-1.414-1.414a1.996 1.996 0 0 0-2.829 0l-9.192 9.192zM5 16v5.75l5.813-5.219-5-2L5 16zM17.121 4.835a1 1 0 1 1 1.415 1.414 1 1 0 0 1-1.415-1.414z"/></svg>
)
}
}