2026-02-25 09:58:24 +03:00
|
|
|
<!--
|
|
|
|
|
Component: SectionSeparator
|
|
|
|
|
A horizontal separator line used to visually separate sections within a page.
|
|
|
|
|
-->
|
|
|
|
|
<script lang="ts">
|
2026-04-17 13:37:44 +03:00
|
|
|
import clsx from 'clsx';
|
2026-02-25 09:58:24 +03:00
|
|
|
|
|
|
|
|
interface Props {
|
2026-03-02 22:19:35 +03:00
|
|
|
/**
|
|
|
|
|
* CSS classes
|
|
|
|
|
* @default ''
|
|
|
|
|
*/
|
2026-02-25 09:58:24 +03:00
|
|
|
class?: string;
|
|
|
|
|
}
|
|
|
|
|
const { class: className = '' }: Props = $props();
|
|
|
|
|
</script>
|
|
|
|
|
|
2026-04-17 13:37:44 +03:00
|
|
|
<div class={clsx('w-full h-px bg-swiss-black/5 dark:bg-white/10 my-8 md:my-12', className)}></div>
|