0.1.0 • Published 5 years ago

styled-ns v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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