JSPM

  • Created
  • Published
  • Downloads 188
  • Score
    100M100P100Q88740F
  • License MIT

tidy-ui react component library; 'button' package

Package Exports

  • @tidy-ui/button
  • @tidy-ui/button/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@tidy-ui/button) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Tidy UI

@tidy-ui/button npm (scoped)

Quality Gate Status

Publishing Coverage Vulnerabilities Bugs Security Rating Maintainability Rating Code Smells Lines of Code Technical Debt Reliability Rating Duplicated Lines (%)

Project Description

Tidy UI is a family of components necessary for your react application. The components are powered styled-components, features include css-in-js, theming etc

Build with

  • react
  • styled-components
  • rollup

Installation

yarn add @tidy-ui/button
npm i @tidy-ui/button

Getting started

Here is a sample root level component that should enclose all tidy-ui components

import React from 'react';
import { TidyUiProvider, orchidLight } from '@tidy-ui/commons';

function App() {
  return <TidyUiProvider theme={orchidLight}>...</TidyUiProvider>;
}

export default App;

Include required components with in the place holder ...