[WEB-4661] fix: move helpers file into utils #7568
This commit is contained in:
parent
a085c0ec62
commit
047080a66f
59 changed files with 68 additions and 72 deletions
4
packages/ui/src/utils/classname.tsx
Normal file
4
packages/ui/src/utils/classname.tsx
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
import { clsx, type ClassValue } from "clsx";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
|
||||
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));
|
||||
|
|
@ -1 +1,2 @@
|
|||
export * from "./classname";
|
||||
export * from "./icons";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue