utils
example-react/utilsFreeUtility
@example/react publishes no description for this item.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/jsrepojs/jsrepo/main/examples/react/public/r/shadcn/utils.jsonSource
1import { type ClassValue, clsx } from 'clsx';2import { twMerge } from 'tailwind-merge';34export function cn(...inputs: ClassValue[]) {5 return twMerge(clsx(inputs));6}
