styled-components.macro
v1.0.0
Published
A `babel-plugin-macros` macro for styled-components
Downloads
4,446
Readme
styled-components.macro 🎣
A babel-plugin-macros macro for styled-components.
Usage
import styled from 'styled-components.macro'
const Button = styled.button`
background: purple;
color: white;
`
// ...Setup for create-react-app
Create-react-app is shipped already including babel-plugin-macros, which makes it much easier to setup 🚀
- Make sure you have already installed
styled-components:
yarn add styled-components- Install this package :
yarn add styled-components.macro --devGeneral setup
- Make sure you have already installed
styled-components:
yarn add styled-components- Install
babel-plugin-macrosand add it to your babel config :
// .babelrc
{
"plugins": ["macros"]
}See babel-plugin-macros docs for more information about how to setup babel-plugin-macros.
- Install this package :
yarn add styled-components.macro --devMore
This macro is using babel-plugin-styled-components to transform your code. See babel-plugin-styled-components to see what transformations are applied.
