Files
workforce-pay-bill-p/src/lib/utils.ts

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'