Minimal react ui library built by styled components.
npm install --save react-space-kit
import React from "react";import { Button } from "react-space-kit";function App() { return ( <Button>Hello</Button> );}