react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 978 B
JSX
import React, { Component } from 'react';
export default class BullhornIcon 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-bullhorn-icon ${this.props.className}`}><path d="M16 12v4a1 1 0 0 1-1 1c-.167 0-.333 0-.944-.5-.612-.5-1.667-1.5-2.75-2-1-.461-2.023-.497-3.048-.5l1.208 3.318.034.182a.5.5 0 0 1-.5.5H7a.5.5 0 0 1-.474-.34L5.194 14H5a1 1 0 0 1-1-1 2 2 0 1 1 0-4 1 1 0 0 1 1-1h3c1.111 0 2.222 0 3.306-.5 1.083-.5 2.138-1.5 2.75-2 .61-.5.777-.5.944-.5a1 1 0 0 1 1 1v4a1 1 0 1 1 0 2zm5-1c0 1.38-.56 2.63-1.465 3.536l-1.414-1.415A2.99 2.99 0 0 0 19 11a2.99 2.99 0 0 0-.879-2.121l1.415-1.415A4.984 4.984 0 0 1 21 11z"/></svg>
)
}
}