styled-ns
Patched version of styled-components package that supports namespaces.
Installation
Install from the NPM repository using yarn or npm:
yarn add styled-nsnpm install --save styled-nsUsage
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>
)