feat: replace clsx with cn util

This commit is contained in:
Ilia Mashkov
2026-04-23 09:48:32 +03:00
parent 1332b45bc1
commit a68f754b1c
34 changed files with 91 additions and 92 deletions
@@ -3,7 +3,7 @@
A horizontal separator line used to visually separate sections within a page.
-->
<script lang="ts">
import clsx from 'clsx';
import { cn } from '$shared/lib';
interface Props {
/**
@@ -15,4 +15,4 @@ interface Props {
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>
<div class={cn('w-full h-px bg-swiss-black/5 dark:bg-white/10 my-8 md:my-12', className)}></div>