mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-01 13:10:44 -03:00
21 lines
515 B
Svelte
21 lines
515 B
Svelte
<script lang="ts">
|
|
import { cn } from "$lib/utils.js";
|
|
import type { ComponentProps } from "svelte";
|
|
import { Separator } from "$lib/components/ui/separator/index.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
orientation = "vertical",
|
|
...restProps
|
|
}: ComponentProps<typeof Separator> = $props();
|
|
</script>
|
|
|
|
<Separator
|
|
bind:ref
|
|
data-slot="button-group-separator"
|
|
{orientation}
|
|
class={cn("bg-input relative !m-0 self-stretch data-[orientation=vertical]:h-auto", className)}
|
|
{...restProps}
|
|
/>
|