This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / components / ui / Separator.svelte
352 B 14 lines
1<script lang="ts"> 2 interface Props { 3 variant?: string; 4 class?: string; 5 } 6 7 let { variant: variant = "line", class: className = "" }: Props = $props(); 8</script> 9 10{#if variant === "line"} 11 <hr class="min-h-px w-full border-none bg-border-default {className}" /> 12{:else if variant === "dot"} 13 <span class="text-inherit {className}">·</span> 14{/if}