10 lines
490 B
TypeScript
10 lines
490 B
TypeScript
// icon:clock-time-five-outline | Material Design Icons https://materialdesignicons.com/ | Austin Andrews
|
|
import * as React from 'react';
|
|
|
|
export function ClockTimeIcon(props: React.SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg viewBox="0 0 24 24" fill="currentColor" height="1em" width="1em" {...props}>
|
|
<path d="M12 20c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8m0-18c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2m3.3 14.2L14 17l-3-5.2V7h1.5v4.4l2.8 4.8z" />
|
|
</svg>
|
|
);
|
|
}
|