1.1.1 • Published 3 years ago

@stefanoruth/classnames v1.1.1

Weekly downloads
7
License
MIT
Repository
github
Last release
3 years ago

Classnames

A simple classnames javascript utility function for combining conditional classnames together.

npm npm Build & Tests

Installation

# npm
npm install @stefanoruth/classnames

# Yarn
yarn add @stefanoruth/classnames

Example

import React from 'react
import { css } from '@stefanoruth/classnames'

export const Card = props => {
    return <div className={css('bg-white w-full shadow rounded', props.spacing && 'px-4 py-6' props.className)}>{props.children}</div>
}