mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-15 14:06:35 +00:00
14 lines
316 B
Svelte
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} />
|