24 lines
485 B
Svelte
24 lines
485 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import {
|
||
|
|
type WithElementRef,
|
||
|
|
cn,
|
||
|
|
} from '$shared/shadcn/utils/shadcn-utils.js';
|
||
|
|
import type { HTMLAttributes } from 'svelte/elements';
|
||
|
|
|
||
|
|
let {
|
||
|
|
ref = $bindable(null),
|
||
|
|
class: className,
|
||
|
|
children,
|
||
|
|
...restProps
|
||
|
|
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div
|
||
|
|
bind:this={ref}
|
||
|
|
data-slot="item-actions"
|
||
|
|
class={cn('flex items-center gap-2', className)}
|
||
|
|
{...restProps}
|
||
|
|
>
|
||
|
|
{@render children?.()}
|
||
|
|
</div>
|