AK-21/Graphite-Industrial-Intelligence
0
1<!-- This file is autogenerated. If you want to change this content, please do the changes in `./docs/README.md` instead. -->2 3<div align="center">4 <br />5 <a href="https://github.com/dcastil/tailwind-merge">6 <img src="https://github.com/dcastil/tailwind-merge/raw/v3.6.0/assets/logo.svg" alt="tailwind-merge" height="150px" />7 </a>8</div>9 10# tailwind-merge11 12Utility function to efficiently merge [Tailwind CSS](https://tailwindcss.com) classes in JS without style conflicts.13 14```ts15import { twMerge } from 'tailwind-merge'16 17twMerge('px-2 py-1 bg-red hover:bg-dark-red', 'p-3 bg-[#B91C1C]')18// → 'hover:bg-dark-red p-3 bg-[#B91C1C]'19```20 21- Supports Tailwind v4.0 up to v4.3 (if you use Tailwind v3, use [tailwind-merge v2.6.0](https://github.com/dcastil/tailwind-merge/tree/v2.6.0))22- Works in all modern browsers and maintained Node versions23- Fully typed24- [Check bundle size on Bundlephobia](https://bundlephobia.com/package/tailwind-merge)25 26## Get started27 28- [What is it for](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/what-is-it-for.md)29- [When and how to use it](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/when-and-how-to-use-it.md)30- [Features](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/features.md)31- [Limitations](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/limitations.md)32- [Configuration](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/configuration.md)33- [Recipes](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/recipes.md)34- [API reference](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/api-reference.md)35- [Writing plugins](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/writing-plugins.md)36- [Versioning](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/versioning.md)37- [Contributing](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/contributing.md)38- [Similar packages](https://github.com/dcastil/tailwind-merge/blob/v3.6.0/docs/similar-packages.md)39 