mirror of
https://github.com/kunkunsh/kunkun-ext-sqlite-browser.git
synced 2025-04-03 18:56:44 +00:00
13 lines
296 B
Svelte
13 lines
296 B
Svelte
<script lang="ts">
|
|
import type { ComponentProps } from 'svelte';
|
|
import { Checkbox } from '@kksh/svelte5';
|
|
|
|
let {
|
|
checked = false,
|
|
controlledChecked = true,
|
|
...restProps
|
|
}: ComponentProps<typeof Checkbox> = $props();
|
|
</script>
|
|
|
|
<Checkbox {checked} {controlledChecked} {...restProps} />
|