elismasilva's picture
Upload folder using huggingface_hub
4f1015f verified
raw
history blame contribute delete
288 Bytes
<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')} />