Skip to content

Commit b944830

Browse files
committed
Move Pixelarticons to .tsx files
1 parent 2591c75 commit b944830

File tree

4 files changed

+30
-9
lines changed

4 files changed

+30
-9
lines changed

src/app/conf/2025/pixelarticons/calendar-icon.svg

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { SVGProps } from "react"
2+
3+
export function CalendarIcon(props: SVGProps<SVGSVGElement>) {
4+
return (
5+
<svg
6+
width="24"
7+
height="24"
8+
viewBox="0 0 24 24"
9+
fill="currentColor"
10+
{...props}
11+
>
12+
<path d="M15 2h2v2h4v18H3V4h4V2h2v2h6V2zM5 8h14V6H5v2zm0 2v10h14V10H5z" />
13+
</svg>
14+
)
15+
}

src/app/conf/2025/pixelarticons/pin-icon.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { SVGProps } from "react"
2+
3+
export function PinIcon(props: SVGProps<SVGSVGElement>) {
4+
return (
5+
<svg
6+
width="24"
7+
height="24"
8+
viewBox="0 0 24 24"
9+
fill="currentColor"
10+
{...props}
11+
>
12+
<path d="M7 2h10v2H7V2zM5 6V4h2v2H5zm0 8H3V6h2v8zm2 2H5v-2h2v2zm2 2H7v-2h2v2zm2 2H9v-2h2v2zm2 0v2h-2v-2h2zm2-2v2h-2v-2h2zm2-2v2h-2v-2h2zm2-2v2h-2v-2h2zm0-8h2v8h-2V6zm0 0V4h-2v2h2zm-5 2h-4v4h4V8z" />
13+
</svg>
14+
)
15+
}

0 commit comments

Comments
 (0)