react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 766 B
JSX
import React, { Component } from 'react';
export default class PiBoxIcon 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-pi-box-icon ${this.props.className}`}><path d="M5 2.998A2.002 2.002 0 0 0 2.998 5v13.999c0 1.104.893 1.997 2.002 1.997h13.999A2.001 2.001 0 0 0 21 19V5A2.005 2.005 0 0 0 19 2.998M6 7.003h11.002v1.996H15v5a1.002 1.002 0 0 0 2.003 0h1.996a3 3 0 1 1-6.001 0v-5H10v8.004H7.997V8.999H6.002"/></svg>
)
}
}