Files
GitLite/src/lib/components/LanguageIcon.svelte
T
2026-06-29 14:40:42 +02:00

22 lines
371 B
Svelte

<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>