Void Design

A hybrid package of UI elements for ReactJS, from void

What’s new (v1.0.2)

  • Reduced package size by 95%

Installation

  • ⬇️ Install the package
yarn add void-design
  • ?️ Import the CSS file
import "void-design/lib/void.css";
  • ? Start using the package

import "void-design/lib/void.css";

import React from "react";
import { Input } from "void-design";

const App = () => {
  return (
    <div>
      <Input placeholder="Enter your name" />
    </div>
  );
};

export default App;

GitHub

View Github