Spaces:
Running
on
Zero
Running
on
Zero
File size: 288 Bytes
4f1015f |
1 2 3 4 5 6 7 8 |
<script lang="ts">
import { createEventDispatcher } from "svelte";
import { Trash } from "@gradio/icons";
import { IconButton } from "@gradio/atoms";
const dispatch = createEventDispatcher();
</script>
<IconButton Icon={Trash} on:click={() => dispatch('click')} /> |