UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 729 B
import React, { Component } from 'react'; export default class WatchIcon 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-icon ${this.props.className}`}><path d="M6 11.999a6 6 0 1 1 11.999 0 6 6 0 0 1-12 0zm14 0a7.977 7.977 0 0 0-3.046-6.273L16-.001H8l-.954 5.727A7.974 7.974 0 0 0 4 11.999a7.974 7.974 0 0 0 3.046 6.273L8 24h8l.955-5.727A7.978 7.978 0 0 0 20 12z"/></svg> ) } }