grain.social is a photo sharing platform built on atproto.
1export function LabelDefinitionButton(
2 { src, val }: Readonly<{ src: string; val: string }>,
3) {
4 return (
5 <button
6 type="button"
7 class="text-sky-500 hover:underline cursor-pointer"
8 hx-get={`/dialogs/label/${src}/${val}`}
9 hx-trigger="click"
10 hx-target="#layout"
11 hx-swap="afterbegin"
12 _="on click halt"
13 >
14 Learn more
15 </button>
16 );
17}