mirror of
https://github.com/johndoe6345789/workforce-pay-bill-p.git
synced 2026-04-24 13:24:57 +00:00
13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
import { clsx, type ClassValue } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|
|
|
|
export * from './constants'
|
|
export * from './error-handler'
|
|
export * from './sanitize'
|
|
export * from './type-guards'
|
|
export * from './validation'
|