takurinton / ingred-ui

Home Page:https://ingred-ui.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo.png INGRED UI is a design system developed to make it easy and quick for anyone to build a user interface. It is based on React and has a well thought out structure that works well with TypeScript.

NPM JavaScript Style Guide

Netlify Status

Install

For npm users:

npm install --save ingred-ui styled-components

For yarn users:

yarn add ingred-ui styled-components

For pnpm users:

pnpm add ingred-ui styled-components

Usage

import * as React from "react";

import { ThemeProvider, createTheme, Button } from "ingred-ui";

const App = () => {
  const theme = createTheme();
  return (
    <ThemeProvider theme={theme}>
      <Button>Sample</Button>
    </ThemeProvider>
  );
};

If you use <DatePicker /> or <DateRangePicker /> , add

import "react-dates/lib/css/_datepicker.css";

License

MIT © CARTA HOLDINGS, Inc.

About

https://ingred-ui.netlify.app

License:MIT License


Languages

Language:TypeScript 98.4%Language:JavaScript 1.1%Language:HTML 0.4%Language:Makefile 0.1%