source: src/lib/utils.ts@ 8496f3c

Last change on this file since 8496f3c was 875f7d6, checked in by stefansaveski <stefansaveski19@…>, 12 months ago

Initial commit with Next.js project setup

  • Property mode set to 100644
File size: 166 bytes
Line 
1import { clsx, type ClassValue } from "clsx"
2import { twMerge } from "tailwind-merge"
3
4export function cn(...inputs: ClassValue[]) {
5 return twMerge(clsx(inputs))
6}
Note: See TracBrowser for help on using the repository browser.