1.1.3 • Published 7 years ago

oberd-postcss-classnames v1.1.3

Weekly downloads
11
License
ISC
Repository
github
Last release
7 years ago

PostCSS Classnames

Instead of combining classnames from PostCSS objects using typical object syntax, write classes like you normally would with this helper function.

Usage

npm i -S @oberd/postcss-classnames
import globalStyles from '../styles.css';
import moduleStyles from './button.css';
import classnames from '@oberd/postcss-classnames';

const css = classnames(globalStyles, moduleStyles);

css('button-class global-class');
// Will return class string for rendering
// 'Button__button-class__2 Global__global-class__1'