react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 621 B
JSX
import React, { Component } from 'react';
export default class BowTieIcon 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-bow-tie-icon ${this.props.className}`}><path d="M15 13.99L21 17l-.007-10L15 9.996v3.994zm-6 0L3 17l.007-10L9 9.996v3.994zM10 10h4v4h-4v-4z"/></svg>
)
}
}