1
0
mirror of https://github.com/vercel/commerce.git synced 2025-07-11 06:51:21 +00:00
Samantha Kellow 55517f9dae creating dynamic sustainabilty info
& item details refactor
2023-07-27 19:40:13 +01:00

7 lines
167 B
TypeScript

import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}