react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 852 B
JSX
import React, { Component } from 'react';
export default class WatchVibrateIcon 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-watch-vibrate-icon ${this.props.className}`}><path d="M3 17.006v-10h2v10H3zm16 0v-10h2v10h-2zm3-8h2v6h-2v-6zm-22 6v-6h2v6H0zm17.96-3.032c0 1.9-.891 3.6-2.283 4.692l-.71 4.288H8.98l-.711-4.288a5.953 5.953 0 0 1-2.283-4.692c0-1.908.89-3.6 2.283-4.692l.71-4.288h5.987l.711 4.288a5.942 5.942 0 0 1 2.282 4.692zm-10.477 0a4.49 4.49 0 1 0 8.98 0 4.49 4.49 0 0 0-8.98 0z"/></svg>
)
}
}