npm.io
1.1.1 • Published 5 years ago

@stefanoruth/classnames

Licence
MIT
Version
1.1.1
Deps
0
Size
4 kB
Vulns
0
Weekly
0

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>
}