Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/romellogoodman/jstyles

A css-in-js package.
https://github.com/romellogoodman/jstyles

Last synced: 11 days ago
JSON representation

A css-in-js package.

Awesome Lists containing this project

README

        

# jstyles

[![npm version](https://badge.fury.io/js/jstyles.svg)](https://badge.fury.io/js/jstyles)

```
import { css, styled } from 'jstyles';

const titleClass = css`
color: 'red'
`

//

hello world

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

//


```