1<script lang="ts">
2 import { Button } from '@foxui/core';
3 import Icon from './Icon.svelte';
4
5 let { onclick }: { onclick: () => void } = $props();
6</script>
7
8<Button {onclick} variant="ghost" class="w-full justify-start">
9 <Icon class="size-4" />
10
11 Embed stream.place
12</Button>