Files
easy-png-tools2/web/src/lib/components/ui/DownloadButton.svelte
T

14 lines
316 B
Svelte

<script lang="ts">
import { Download } from "@lucide/svelte";
import Button from "./Button.svelte";
interface Props {
label: string;
onclick?: () => void;
disabled?: boolean;
}
let { label, onclick, disabled = false }: Props = $props();
</script>
<Button icon={Download} {label} {onclick} {disabled} />