Files
frontend-svelte/src/shared/ui/Section/SectionSeparator/SectionSeparator.svelte
T

19 lines
423 B
Svelte
Raw Normal View History

<!--
Component: SectionSeparator
A horizontal separator line used to visually separate sections within a page.
-->
<script lang="ts">
import clsx from 'clsx';
interface Props {
/**
* CSS classes
* @default ''
*/
class?: string;
}
const { class: className = '' }: Props = $props();
</script>
<div class={clsx('w-full h-px bg-swiss-black/5 dark:bg-white/10 my-8 md:my-12', className)}></div>