users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/clock.jsx
8c57a511a35702ddf354f3cb52e04228a36bee82
· 459 B · 10 lines
raw
| 1 | import Icon from "../icon.jsx"; |
| 2 | |
| 3 | export default function Clock(props) { |
| 4 | return ( |
| 5 | <Icon {...props}> |
| 6 | <path d="M12 3c-4.9706 0-9 4.0294-9 9s4.0294 9 9 9 9-4.0294 9-9-4.0294-9-9-9ZM1 12C1 5.9249 5.9249 1 12 1s11 4.9249 11 11-4.9249 11-11 11S1 18.0751 1 12Z" /> |
| 7 | <path d="M12 5c.5523 0 1 .4477 1 1v5.382l3.4472 1.7236c.494.247.6942.8476.4472 1.3416-.247.494-.8476.6942-1.3416.4472l-4-2A1 1 0 0 1 11 12V6c0-.5523.4477-1 1-1Z" /> |
| 8 | </Icon> |
| 9 | ); |
| 10 | } |