Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/romellogoodman/jstyles
- Owner: romellogoodman
- License: mit
- Created: 2019-12-17T15:45:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-17T19:24:00.000Z (about 5 years ago)
- Last Synced: 2024-10-31T17:08:08.360Z (3 months ago)
- Language: JavaScript
- Size: 182 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'};
`;//
```