SmolinPavel / react-1

The React.js implementation of the lightelligence design-system

Home Page:https://lightelligence-io.github.io/react

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

React

Build Status Code Coverage Dependencies npm (scoped)

The Lightelligence design system React Components

Installation

npm install @lightelligence/react

Features

Lightelligence React is a set of React components, styled according to our design system. It is a React.js implementation of Lightelligence Styles.

Usage

Make sure to include the bundled CSS in your React Application as well as wrapping your content in <Frame /> component.

import React from 'react';
import ReactDOM from 'react-dom';
import '@lightelligence/react/dist/index.css';
import { Button, Frame, COLOR_PRIMARY } from '@lightelligence/react';

const App = () => (
  <Frame>
    <Button color={COLOR_PRIMARY}>Hello World</Button>
  </Frame>
);

ReactDOM.render(<App />, document.getElementById('root'));

Check out the API reference to see the full documentation.

License

MIT

About

The React.js implementation of the lightelligence design-system

https://lightelligence-io.github.io/react

License:MIT License


Languages

Language:JavaScript 95.8%Language:CSS 4.0%Language:Shell 0.2%