Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/matheusps/runtime-stylesheet

Dead simple runtime CSS-in-TS parser
https://github.com/matheusps/runtime-stylesheet

Last synced: 22 days ago
JSON representation

Dead simple runtime CSS-in-TS parser

Awesome Lists containing this project

README

        

# Runtime Stylesheet

Parse vanilla-extract styles in runtime. Use it only for testing purposes - For production, use vanilla-extract 🙂.

## Usage

Install the package:

```sh
pnpm add runtime-stylesheet
```

Start styling

```ts
import { Stylesheet } from 'runtime-stylesheet'

function Example(){
return (
<>

content


>
)
}
```