blob: cfbbd587ebf264b77ad192ebc6f169c1bb89f249 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<script lang="ts">
import type { Snippet } from 'svelte';
interface Props {
name: string;
title?: string | null;
overlay?: Snippet;
onclick: (event: MouseEvent) => void;
onauxclick?: (event: MouseEvent) => void;
}
let { name, title = undefined, overlay, onclick, onauxclick = undefined }: Props = $props();
</script>
<button
type="button"
class="relative flex overflow-hidden rounded-sm bg-slate-900 text-left shadow-md shadow-slate-950/20"
{title}
{onclick}
{onauxclick}
>
{@render overlay?.()}
<article class="group h-full grow items-center gap-2 p-2 text-xs">
<h2 class="ellipsis-nowrap text-sm font-medium">{name}</h2>
</article>
</button>
<style>
article {
display: grid;
grid-template-columns: 1fr auto;
grid-template-rows: 2em;
}
</style>
|