A simple classnames javascript utility function for combining conditional classnames together.
# npm
npm install @stefanoruth/classnames
# Yarn
yarn add @stefanoruth/classnames
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>
}