Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/matheusps/runtime-stylesheet
- Owner: matheusps
- Created: 2023-07-22T21:42:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-24T17:24:53.000Z (over 1 year ago)
- Last Synced: 2024-10-05T11:41:44.220Z (about 1 month ago)
- Language: TypeScript
- Size: 263 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
>
)
}
```