Skip to content

Commit 2a241ed

Browse files
committed
add history icon
1 parent c843a49 commit 2a241ed

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

src/packages/core/icon-registry/icon-dictionary.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,6 +1096,10 @@
10961096
"name": "icon-help",
10971097
"file": "life-buoy.svg"
10981098
},
1099+
{
1100+
"name": "icon-history",
1101+
"file": "history.svg"
1102+
},
10991103
{
11001104
"name": "icon-home",
11011105
"file": "house.svg"

src/packages/core/icon-registry/icons.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -879,6 +879,10 @@ name: "icon-help",
879879

880880
path: () => import("./icons/icon-help.js"),
881881
},{
882+
name: "icon-history",
883+
884+
path: () => import("./icons/icon-history.js"),
885+
},{
882886
name: "icon-home",
883887

884888
path: () => import("./icons/icon-home.js"),
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export default `<!-- @license lucide-static v0.424.0 - ISC -->
2+
<svg
3+
class="lucide lucide-history"
4+
xmlns="http://www.w3.org/2000/svg"
5+
viewBox="0 0 24 24"
6+
fill="none"
7+
stroke="currentColor"
8+
stroke-width="1.75"
9+
stroke-linecap="round"
10+
stroke-linejoin="round"
11+
>
12+
<path d="M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8" />
13+
<path d="M3 3v5h5" />
14+
<path d="M12 7v5l4 2" />
15+
</svg>
16+
`;

0 commit comments

Comments
 (0)