react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 790 B
JSX
import React, { Component } from 'react';
export default class AmbulanceIcon 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-ambulance-icon ${this.props.className}`}><path d="M18 18.498a1.5 1.5 0 1 0-.002-3.001A1.5 1.5 0 0 0 18 18.498zm1.5-9H17v2.5h4.463l-1.964-2.5zm-13.5 9a1.5 1.5 0 1 0-.002-3.001A1.5 1.5 0 0 0 6 18.498zm14-10.5l3 4v5h-2a3 3 0 1 1-6 0H9a3 3 0 1 1-6 0H1v-11a2 2 0 0 1 2-2h14v4h3zM8 6v3H5v2h3v3h2v-3h3V9h-3V6H8z"/></svg>
)
}
}