CoolFace
Apppublic

Sarveni/Top-VS-Code-Extensions-Data-Analysis

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
utils.ts7 linesDownload Raw Back to lib
1import { clsx, type ClassValue } from "clsx"2import { twMerge } from "tailwind-merge"3 4export function cn(...inputs: ClassValue[]) {5    return twMerge(clsx(inputs))6}7