包详细信息

react-style-object-to-css

Calvin9250.6kMIT1.1.2

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

React, CSS, Javascript

自述文件

Summary

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

Installation

    npm install react-style-object-to-css

Example

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)