UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 694 B
import React, { Component } from 'react'; export default class TimerSandIcon 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-timer-sand-icon ${this.props.className}`}><path d="M6 2h12v6h-.01l.01.01L14 12l4 4-.01.01H18V22H6v-5.99h.01L6 16l4-4-4-3.99.01-.01H6V2zm10 14.5l-4-4-4 4V20h8v-3.5zm-4-5l4-4V4H8v3.5l4 4zM10 6h4v.75l-2 2-2-2V6z"/></svg> ) } }