# react-style-object-to-css

> Convert react style with object to inline css(string).

Latest version **1.1.2** (published 2018-05-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-style-object-to-css
pnpm add react-style-object-to-css
yarn add react-style-object-to-css
bun add react-style-object-to-css
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.2 |
| Published | 2018-05-08 |
| First published | 2018-05-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 23 |
| Author | Calvin92 |
| Maintainers | calvin92 |
| Keywords | React, CSS, Javascript |

## Links

- npm: https://www.npmjs.com/package/react-style-object-to-css
- Repository: https://github.com/Calvin92/react-style-object-to-css
- Homepage: https://github.com/Calvin92/react-style-object-to-css#readme
- Issues: https://github.com/Calvin92/react-style-object-to-css/issues
- npm.io page: https://npm.io/package/react-style-object-to-css

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.1.2 (latest) — 2018-05-08
- 1.1.1 — 2018-05-08
- 1.1.0 — 2018-05-08
- 1.0.0 — 2018-05-08

## README

# Summary
Convert React style defined as an object to pure inline css (string).

# Installation
```js
	npm install react-style-object-to-css
```

# Example
```js
const reactToCSS = require('react-style-object-to-css')
const styleObj = {
	backgroundColor: 'blue',
	fontSize: 14
}

// result === "background-color: blue;  font-size: 14px;"
const result = reactToCSS(styleObj)
```

---
_Source: https://npm.io/package/react-style-object-to-css · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
