react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 694 B
JSX
import React, { Component } from 'react';
export default class PrinterAlertIcon 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-alert-icon ${this.props.className}`}><path d="M14 4v4H6V4h8zm1 9a1 1 0 1 0 0-2 1 1 0 1 0 0 2zm-2 6v-4H7v4h6zm2-10a3 3 0 0 1 3 3v5h-3v4H5v-4H2v-5c0-1.656 1.344-3 3-3h10zm7-2v5h-2V7h2zm0 7v2h-2v-2h2z"/></svg>
)
}
}