Some checks failed
- create ComboControl component for typography settings (font size, font weight, line height) - integrate it to TypographyMenu and integrate it to Layout
20 lines
462 B
Svelte
20 lines
462 B
Svelte
<script lang="ts">
|
|
import { Separator } from '$shared/shadcn/ui/separator/index.js';
|
|
import { cn } from '$shared/shadcn/utils/shadcn-utils.js';
|
|
import type { ComponentProps } from 'svelte';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: ComponentProps<typeof Separator> = $props();
|
|
</script>
|
|
|
|
<Separator
|
|
bind:ref
|
|
data-slot="item-separator"
|
|
orientation="horizontal"
|
|
class={cn('my-0', className)}
|
|
{...restProps}
|
|
/>
|