react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 639 B
JSX
import React, { Component } from 'react';
export default class Store24HourIcon 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-store24-hour-icon ${this.props.className}`}><path d="M16 11.998h-1v-2h-2v-3h1v2h1v-2h1m-5 3H9v1h2v1H8v-3h2v-1H8v-1h3m8 0v-3H5v3H2v13h8v-4h4v4h8v-13h-3z"/></svg>
)
}
}