Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/components/icon/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export type IconName =
| "CheckTwice"
| "Download"
| "External"
| "Clock"
| "RecentClock"
| "Power"
| "ReplyArrow"
Expand Down Expand Up @@ -1888,6 +1889,17 @@ export const Icons: Record<IconName, IconSrc> = {
</>
),

Clock: () => (
<>
<path
d="M20.5 12C20.5 7.30558 16.6944 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5V22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22V20.5C16.6944 20.5 20.5 16.6944 20.5 12Z"
fill="currentColor"
/>
<rect x="10" y="7" width="2" height="7" fill="currentColor" />
<path d="M10 14L10 12L17 12L17 14L10 14Z" fill="currentColor" />
</>
),

RecentClock: () => (
<>
<path
Expand Down
Loading