space

Minimal react ui library built by styled components.

Installation

npm install --save react-space-kit

Usage

import React from "react";
import { Button } from "react-space-kit";
function App() {
return (
<Button>Hello</Button>
);
}