your personal website on atproto - mirror
blento.app
1<script lang="ts">
2 import { Button } from '@foxui/core';
3
4 let { onclick }: { onclick: () => void } = $props();
5</script>
6
7<Button {onclick} variant="ghost" class="w-full justify-start">
8 <svg
9 xmlns="http://www.w3.org/2000/svg"
10 viewBox="0 0 24 24"
11 fill="currentColor"
12 class="text-accent-600 dark:text-accent-400"
13 >
14 <!-- Dino silhouette -->
15 <path
16 d="M18 4h-2v2h-2v2h-2V6h-2V4H8v2H6v2H4v2H2v8h2v2h2v-2h2v-2h2v2h2v-2h2v2h2v-2h2V8h-2V6h-2V4zm-8 8H8v-2h2v2zm4 0h-2v-2h2v2z"
17 />
18 </svg>
19
20 Dino Game</Button
21>