@rebasejs/rebase
v1.2.0
Published
Set of UI components built for React with styled-components and styled-system.
Downloads
5
Readme
Rebase
Set of UI components built for React with styled-components and styled-system.
Read the docs: https://rebasejs.com
Getting Started
Installation
npm i @rebasejs/rebase
Components
Usage
import React from 'react';
import { Box, Heading, Button } from '@rebasejs/rebase';
export default () => (
<Box>
<Heading>Hello</Heading>
<Button variant="primary">Rebase</Button>
</Box>
);