Icons: add badge icon (#20201)

add badge icon
This commit is contained in:
Niels Lyngsø
2025-09-19 19:01:19 +02:00
committed by GitHub
parent c1b74b6883
commit 3a196ef996
3 changed files with 8 additions and 0 deletions

View File

@@ -100,6 +100,10 @@
"name": "icon-backspace",
"file": "delete.svg"
},
{
"name": "icon-badge",
"file": "badge.svg"
},
{
"name": "icon-badge-add",
"file": "circle-plus.svg"

View File

@@ -74,6 +74,9 @@ path: () => import("./icons/icon-axis-rotation.js"),
name: "icon-backspace",
path: () => import("./icons/icon-backspace.js"),
},{
name: "icon-badge",
path: () => import("./icons/icon-badge.js"),
},{
name: "icon-badge-add",
path: () => import("./icons/icon-badge-add.js"),
},{

View File

@@ -0,0 +1 @@
export default `<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.75" class="lucide lucide-badge" viewBox="0 0 24 24"><path d="M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76"/></svg>`;