Files
varo-website/src/components/website/Team.svelte
bytedream 60f3f8a096
Some checks failed
deploy / build-and-deploy (push) Failing after 21s
initial commit
2025-05-18 13:16:20 +02:00

14 lines
302 B
Svelte

<script lang="ts">
interface Props {
name: string;
color: string;
}
const { name, color }: Props = $props();
</script>
<div class="flex items-center gap-x-2">
<div class="rounded-sm w-3 h-3" style="background-color: {color}"></div>
<h3 class="text-xs sm:text-xl">{name}</h3>
</div>