mirror of
https://github.com/appwrite/console.git
synced 2026-04-07 19:17:46 +00:00
15 lines
420 B
Svelte
15 lines
420 B
Svelte
<script lang="ts">
|
|
import { ActionMenu, Layout } from '@appwrite.io/pink-svelte';
|
|
import InputCheckbox from './forms/inputCheckbox.svelte';
|
|
|
|
export let value = false;
|
|
</script>
|
|
|
|
<ActionMenu.Item.Button on:click>
|
|
<Layout.Stack direction="row" gap="xs" alignItems="center">
|
|
<InputCheckbox bind:checked={value} id="filter" size="s" />
|
|
|
|
<slot />
|
|
</Layout.Stack>
|
|
</ActionMenu.Item.Button>
|