feat: replace clsx with cn util

This commit is contained in:
Ilia Mashkov
2026-04-23 09:48:32 +03:00
parent cffebf05e3
commit 54087b7b2a
34 changed files with 91 additions and 92 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
1px separator line, horizontal or vertical.
-->
<script lang="ts">
import clsx from 'clsx';
import { cn } from '$shared/lib';
interface Props {
/**
@@ -24,7 +24,7 @@ let {
</script>
<div
class={clsx(
class={cn(
'bg-black/10 dark:bg-white/10',
orientation === 'horizontal' ? 'w-full h-px' : 'w-px h-full',
className,