Skip to content

dsanch3z/react-zeit-components

Repository files navigation

react-zeit-components

Zeit's design components to React

NPM JavaScript Style Guide

Install

npm install --save react-zeit-components

or

yarn add react-zeit-components

Usage

import * as React from "react";
import { Button, RaisedContainer } from "react-zeit-components";

class Example extends React.Component {
  render() {
    return (
      <RaisedContainer>
        <div>
          <Button onClick={() => console.log("clicked")}>Action</Button>
        </div>
        <br />
        <div>
          <Button size="sm" onClick={() => console.log("clicked")}>
            Action
          </Button>
        </div>
      </RaisedContainer>
    );
  }
}

Disclaimer

I DO NOT OWN any of these designs and I DID NOT CREATE them. These designs where created by Zeit and evilrabbit and belong to them only.

I'm just fascinated with Zeit's design and wanted to use their components in my personal projects, so I ported them to React. I couldn't find any license thing so I hope there isn't a problem, if there is one, please let me know.

I love what Zeit is doing and so should you, check them out.

Typography

  • Headings
  • Lists
  • Paragraphs
  • Typeface

Components

  • Avatar (just small size at the moment)
  • Badges
  • Buttons
  • Checkbox
  • Code
  • Collapse
  • Colors (would be awesome if the color palette could be customized by the user)
  • Fieldsets
  • File Tree
  • Images
  • Inputs
  • Note
  • PopOver Menu
  • Select
  • Show More
  • Sliders
  • Spinner
  • Table
  • Toasts (WIP)
  • Toggle
  • Video Cards
  • Videos

License

MIT © cube5

Releases

No releases published

Packages

No packages published