react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 714 B
JSX
import React, { Component } from 'react';
export default class ShredderIcon 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-shredder-icon ${this.props.className}`}><path d="M6 3v4h2V5h8v2h2V3H6zM5 8c-1.66 0-3 1.34-3 3v6h3v-3h14v3h3v-6c0-1.66-1.34-3-3-3H5zm13 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 16v5h2v-5H7zm4 0v4h2v-4h-2zm4 0v5h2v-5h-2z"/></svg>
)
}
}