mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-15 14:06:35 +00:00
feat: flatten components/kit -> components folder
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<script lang="ts">
|
||||
import { Download } from "@lucide/svelte";
|
||||
import Button from "./Button.svelte";
|
||||
|
||||
interface Props {
|
||||
label: string;
|
||||
onclick?: () => void;
|
||||
}
|
||||
let { label, onclick }: Props = $props();
|
||||
</script>
|
||||
|
||||
<Button icon={Download} {label} {onclick} />
|
||||
Reference in New Issue
Block a user