LatitudeFinancialOSS / basis

Basis Design System

Home Page:https://basis.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CI

Basis Design System

Installation

npm install --save basis @emotion/core prop-types

Install the fonts that your theme needs. For example, if you are using the default theme:

npm install --save typeface-{montserrat,roboto}

Usage

import React from "react";
import { BasisProvider, defaultTheme, Text } from "basis";
import "typeface-montserrat";
import "typeface-roboto";

function App() {
  return (
    <BasisProvider theme={defaultTheme}>
      <Text>Hello World</Text>
    </BasisProvider>
  );
}

export default App;

Developing locally

npm install
npm start

Thanks

License

MIT

About

Basis Design System

https://basis.vercel.app

License:MIT License


Languages

Language:JavaScript 100.0%