0.0.0 • Published 4 years ago

obss v0.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

obss

npm version

A package for Object Based StyleS in css-in-js.

import { css, styled } from 'obss';

const titleClass = css({
  color: 'red'
})

// <h2 className={titleClass}>hello world</h2>

const Div = styled('div', {
  padding: '20px',
  'font-size': p => p.size || '20px',
}));

// <Div size={'32px'} />
0.0.0

4 years ago