twmx
v0.0.2
Published
A helper that merges clsx with tailwind-merge
Readme
✨ twmx ✨
A helper that merges clsx with tailwind-merge
Installation
npm
npm install twmxyarn
yarn add twmxpnpm
pnpm add twmxUsage
import { twmx } from "twmx";
export default function Demo() {
return (
<div className={twmx("relative", true ? "bg-red-500" : "bg-green-500")}>
...
</div>
);
}