0.0.17 • Published 2 years ago

@real-system/styling-library v0.0.17

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

Usage

Installation

# install peer dependencies

# npm
$ npm install react react-dom
# yarn
$ yarn add react react-dom

# install styling

# npm
$ npm install @real-system/styling-library
# yarn
$ yarn add @real-system/styling-library

Code Example

import styled from '@real-system/styling-library';

const Block = styled('div')`
  display: block;
`;

const MyComponent = () => {
  return (
    <Block>
      ...
    </Block>
  );
};

Project Status

UNDER DEVELOPMENT

  • Build custom style props for easier spreading of props throughout component API's
  • Build a custom styled-system for deeper customization/requirements and ease-of-use within real system composition
  • Build abstraction layer of emotion API