react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 705 B
JSX
import React, { Component } from 'react';
export default class GateIcon 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-gate-icon ${this.props.className}`}><path d="M9 5v5H7V6H5v4H3V8H1v12h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2V8h-2v2h-2V6h-2v4h-2V5h-2v5h-2V5H9zm-6 7h2v4H3v-4zm4 0h2v4H7v-4zm4 0h2v4h-2v-4zm4 0h2v4h-2v-4zm4 0h2v4h-2v-4z"/></svg>
)
}
}