45 lines
1.3 KiB
Svelte
45 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import { slide } from 'svelte/transition';
|
|
import { cubicOut } from 'svelte/easing';
|
|
import { Down } from './icons';
|
|
|
|
function openCollapsible() {
|
|
open = !open;
|
|
if (open) {
|
|
opened();
|
|
} else {
|
|
closed();
|
|
}
|
|
}
|
|
|
|
let { icon, title, children, open, opened, closed, class: klass } = $props();
|
|
</script>
|
|
|
|
<div class="{klass} relative grid w-full max-w-2xl self-center overflow-hidden">
|
|
<div
|
|
class="min-h-16 flex w-full items-center justify-between space-x-3 p-4 text-xl font-medium"
|
|
>
|
|
<span class="inline-flex items-baseline">
|
|
{@render icon?.()}
|
|
{@render title?.()}
|
|
</span>
|
|
<button class="btn btn-circle btn-ghost btn-sm" onclick={() => openCollapsible()}>
|
|
<Down
|
|
class="text-base-content h-auto w-6 transition-transform duration-300 ease-in-out {(
|
|
open
|
|
) ?
|
|
'rotate-180'
|
|
: ''}"
|
|
/>
|
|
</button>
|
|
</div>
|
|
{#if open}
|
|
<div
|
|
class="flex flex-col gap-2 p-4 pt-0"
|
|
transition:slide|local={{ duration: 300, easing: cubicOut }}
|
|
>
|
|
{@render children?.()}
|
|
</div>
|
|
{/if}
|
|
</div>
|