Socket
Socket
Sign inDemoInstall

babel-plugin-css-to-inline-styles

Package Overview
Dependencies
38
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-plugin-css-to-inline-styles

Convert your css class to inline styles


Version published
Maintainers
1
Install size
6.06 MB
Created

Readme

Source

babel-plugin-css-to-inline-styles

Installation

npm install --save babel-plugin-css-to-inline-styles

Example

Given an example css file (test.css)

.main-wrapper {
    flex-direction: row;
    display: flex;
    flex: 1;
  }

app.jsx


const ReactComponent = <div className="main-wrapper"></div>

transforms to


const ReactComponent = <div style={{
                                    flexDirection: 'row',
                                    display: 'flex',
                                    flex: 1;
                                    }}>
                        </div>

Need help or want to donate to help me make Open Source projects?

  • Send me a message on Twitter!
  • Donate to me!

FAQs

Last updated on 13 May 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc