react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 736 B
JSX
import React, { Component } from 'react';
export default class PackageIcon 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-package-icon ${this.props.className}`}><path d="M5.12 5h13.75l-.94-1h-12l-.81 1zm15.42.23c.29.34.46.79.46 1.27V19c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V6.5c0-.48.17-.93.46-1.27l1.38-1.68C5.12 3.21 5.53 3 6 3h12c.47 0 .88.21 1.15.55l1.39 1.68zM6 18h6v-3H6v3z"/></svg>
)
}
}