styled-ns
Version:
styled-components with namespaces
42 lines (30 loc) • 643 B
Markdown
# styled-ns
Patched version of styled-components package that supports namespaces.
## Installation
Install from the NPM repository using `yarn` or `npm`:
```
yarn add styled-ns
```
```
npm install --save styled-ns
```
## Usage
You can use this package exactly the same way as `styled-components` package:
```js
import React from 'react'
import styled from 'styled-ns'
const Wrapper = styled('section')`
padding: 4em;
background: papayawhip;
`
const Title = styled('h1')`
font-size: 1.5em;
text-align: center;
color: palevioletred;
`
const Component = () => (
<Wrapper>
<Title>Hello World!</Title>
</Wrapper>
)
```