react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 652 B
JSX
import React, { Component } from 'react';
export default class PrinterIcon 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-printer-icon ${this.props.className}`}><path d="M18 2.998H6v4h12m1 5a1 1 0 1 1 0-2 1 1 0 1 1 0 2zm-3 7H8v-5h8m3-6H5c-1.657 0-3 1.344-3 3v6h4v4h12v-4h4v-6a3 3 0 0 0-3-3z"/></svg>
)
}
}