40 lines
1.2 KiB
Svelte
40 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
type WithElementRef,
|
|
cn,
|
|
} from '$shared/shadcn/utils/shadcn-utils.js';
|
|
import type { Snippet } from 'svelte';
|
|
import type { HTMLButtonAttributes } from 'svelte/elements';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
child,
|
|
...restProps
|
|
}: WithElementRef<HTMLButtonAttributes> & {
|
|
child?: Snippet<[{ props: Record<string, unknown> }]>;
|
|
} = $props();
|
|
|
|
const mergedProps = $derived({
|
|
class: cn(
|
|
'text-sidebar-foreground ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground absolute end-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 outline-hidden transition-transform focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0',
|
|
// Increases the hit area of the button on mobile.
|
|
'after:absolute after:-inset-2 md:after:hidden',
|
|
'group-data-[collapsible=icon]:hidden',
|
|
className,
|
|
),
|
|
'data-slot': 'sidebar-group-action',
|
|
'data-sidebar': 'group-action',
|
|
...restProps,
|
|
});
|
|
</script>
|
|
|
|
{#if child}
|
|
{@render child({ props: mergedProps })}
|
|
{:else}
|
|
<button bind:this={ref} {...mergedProps}>
|
|
{@render children?.()}
|
|
</button>
|
|
{/if}
|