refactor: remove cn helper function from the editor package (#6217)

This commit is contained in:
Aaryan Khandelwal 2024-12-18 12:22:14 +05:30 committed by GitHub
parent ddd4b51b4e
commit 580c4b1930
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
50 changed files with 123 additions and 131 deletions

View file

@ -0,0 +1,4 @@
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export const cn = (...inputs: ClassValue[]) => twMerge(clsx(inputs));

View file

@ -1,3 +1,4 @@
export * from "./color";
export * from "./common";
export * from "./emoji";
export * from "./string";