🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

elementary-ui-kit

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elementary-ui-kit

A collection of reusable React components built with styled-components.

0.4.0
latest
Source
npm
Version published
Weekly downloads
13
62.5%
Maintainers
1
Weekly downloads
 
Created
Source

Elementary UI

A collection of reusable React UI components built with styled-components.

Documentation

Install

# Install
$ npm install --save elementary-ui-kit
# You can also test the components locally by cloning this repo and doing the following steps:
$ git clone https://github.com/dmitrymorozoff/elementary-ui-kit.git

# Install dependencies from package.json:
$ npm install

# Start local development server `localhost:1234`:
$ npm start

# Start react-styleguidist
$ npm run docs

# Run linter
$ npm run lint

# Start tests followed by jest.
$ npm run test

Quick Start:

import React from "react";
import ReactDOM from "react-dom";
import { Card, CardContent, Text, CardButtons, Button } from "elementary-ui-kit";

function App() {
    return (
        <Card hover={true}>
            <CardContent>
                <Text fontSize="28px" gutterBottom={true}>
                    Penguin
                </Text>
                <Text>
                    They live almost exclusively in the Southern Hemisphere, with only one species, the Galapagos
                    penguin, found north of the equator.
                </Text>
                <CardButtons>
                    <Button>Share</Button>
                    <Button type="primary">More</Button>
                </CardButtons>
            </CardContent>
        </Card>
    );
}

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

Components:

@TODO

  • Table
  • Modal
  • List
  • Radio
  • Tabs
  • Textarea
  • Nav
  • Pagination

Keywords

react

FAQs

Package last updated on 27 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts