mirror of
https://github.com/logos-messaging/OpChan.git
synced 2026-01-04 13:53:11 +00:00
9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
import { clsx, type ClassValue } from 'clsx';
|
|
import { twMerge } from 'tailwind-merge';
|
|
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|
|
|
|
export { urlLoads } from './urlLoads'; |