An utility function to merge tailwindcss classes. Borrowed from @shadcn/ui
npm install @bansal/cn
import { cn } from "@bansal/cn";
const className = cn(
"flex justify-start items-center p-0",
"justify-between items-start",
"p-4"
);
// className = "flex justify-between items-start p-4"