Skip to content

Commit

Permalink
clock icon (#151)
Browse files Browse the repository at this point in the history
* feat: clock icon

* v0.14.4
  • Loading branch information
mikeldking committed Sep 15, 2023
1 parent c922bfe commit eb894e3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.14.3",
"version": "0.14.4",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
17 changes: 17 additions & 0 deletions src/icon/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -808,3 +808,20 @@ export const TokensOutline = () => (
</g>
</svg>
);

export const ClockOutline = () => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g data-name="Layer 2">
<g data-name="clock">
<rect
width="24"
height="24"
transform="rotate(180 12 12)"
opacity="0"
/>
<path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z" />
<path d="M16 11h-3V8a1 1 0 0 0-2 0v4a1 1 0 0 0 1 1h4a1 1 0 0 0 0-2z" />
</g>
</g>
</svg>
);

0 comments on commit eb894e3

Please sign in to comment.