add something

This commit is contained in:
Christoph Brandau
2026-06-29 14:40:42 +02:00
parent a15d6c0b2c
commit 9861fa2446
12 changed files with 822 additions and 42 deletions
+21
View File
@@ -0,0 +1,21 @@
<script lang="ts">
import type { SimpleIcon } from "simple-icons";
interface Props {
icon: SimpleIcon;
title: string;
}
let { icon, title }: Props = $props();
</script>
<svg
class="language-icon"
viewBox="0 0 24 24"
style={`color: #${icon.hex}`}
aria-hidden="true"
focusable="false"
>
<title>{title}</title>
<path d={icon.path} />
</svg>