UNPKG

react-material-icon-svg

Version:
16 lines (14 loc) 512 B
import React from 'react'; export default function ClockCheckIcon(props) { return ( <svg width="24" height="24" {...props} className={`rmi rmi-clock-check ${props.className}`} viewBox="0 0 24 24" > <path d="M23.5 17l-5 5-3.5-3.5 1.5-1.5 2 2 3.5-3.5 1.5 1.5M13 19c0-1.5.5-2.8 1.4-3.9L11 13V7h1.5v5.2l3.1 1.9c1-.7 2.1-1.1 3.4-1.1 1 0 2 .3 2.8.7.1-.6.2-1.1.2-1.7 0-5.5-4.5-10-10-10S2 6.5 2 12s4.5 10 10 10c.6 0 1.2-.1 1.7-.2-.4-.8-.7-1.8-.7-2.8z" /> </svg> ); }