1.0.4 • Published 10 months ago

clsx-tailwind-merge v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

✨ clsx-tailwind-merge ✨

A blend of the clsx library and tailwind-merge for working on tailwindcss projects.

Installation

npm

npm install clsx-tailwind-merge

yarn

yarn add clsx-tailwind-merge

Usage

import { cn } from "clsx-tailwind-merge";

const isUserVerified = true;

<div
  className={cn(
    "absolute top-[10%] z-30 h-9 w-9 rounded-full border-2 border-gray-300 bg-white",
    isUserVerified ? `border-green-900` : `border-red-900`
  )}
/>;
1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago