init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
15
lib/components/dashboard/editor/Handle.svelte
Normal file
15
lib/components/dashboard/editor/Handle.svelte
Normal file
|
@ -0,0 +1,15 @@
|
|||
<script lang="ts">
|
||||
import HandleDot from './HandleDot.svelte';
|
||||
|
||||
export let pad: boolean = false;
|
||||
</script>
|
||||
|
||||
<div class="handle flex gap-1 items-center cursor-grab z-[1]" class:p-6={pad}>
|
||||
{#each Array(2) as _}
|
||||
<div class="flex flex-col gap-1">
|
||||
{#each Array(3) as _}
|
||||
<HandleDot />
|
||||
{/each}
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue