react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 848 B
JSX
import React, { Component } from 'react';
export default class BridgeIcon 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-bridge-icon ${this.props.className}`}><path d="M7 14v-3.09a11.172 11.172 0 0 1-2-1.196V14h2zm-2 4H3v-2H1v-2h2V7h2v1.427C6.804 10.02 9.275 11 12 11c2.725 0 5.196-.981 7-2.573V7h2v7h2v2h-2v2h-2v-2H5v2zm12-7.09V14h2V9.714a11.17 11.17 0 0 1-2 1.196zM16 14v-2.682c-.64.227-1.309.402-2 .517V14h2zm-3 0v-2.04L12 12l-1-.04V14h2zm-3 0v-2.165c-.691-.115-1.36-.29-2-.517V14h2z"/></svg>
)
}
}