npm.io
0.1.0 • Published 7 years ago

styled-ns

Licence
MIT
Version
0.1.0
Deps
0
Size
10 kB
Vulns
0
Weekly
0

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:

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>
)

Keywords