Coder Social home page Coder Social logo

mh-jsx / tw-classnames Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 12 KB

A lightweight utility function that simplifies the process of merging Tailwind Classes

Home Page: https://www.npmjs.com/package/tw-classnames

JavaScript 100.00%
classname classnames javascript javascript-library merge npm npm-package tailwind tailwind-css tailwindcss utilities utility

tw-classnames's Introduction

Tailwind Classnames

npm npm NPM

twc aka tw-classnames is a lightweight utility function that simplifies the process of merging Tailwind Classes while also supporting conditional classes within objects.

Installation

You can install twc via npm or yarn:

npm install tw-classnames
# OR
yarn add tw-classnames

Usage

Import twc into your JavaScript or TypeScript code:

const twc = require('tw-classnames');
// OR
import twc from 'tw-classnames';

Merging Duplicate Classnames

twc allows you to smartly merge duplicate Tailwind classes.

const mergedClasses = twc('bg-blue', 'text-white', 'p-4', 'bg-green');
console.log(mergedClasses);
// Output: 'text-white p-4 bg-green'

Conditional Classes

twc supports conditional classes within objects. This is especially useful when you want to apply different classes based on certain conditions.

const isActive = true;
const classes = twc('bg-blue-500', 'text-white', { 'font-bold': isActive });
console.log(classes);
// Output: 'bg-blue-500 text-white font-bold'

Dependency Libraries

twc internally uses two popular libraries:

License

twc is open-source and released under the MIT License.

tw-classnames's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.