0.0.18 • Published 12 months ago

@ubidots/vulcanui v0.0.18

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

Quick Start

  1. Installation: Inside your React project directory, install VulcanUI by running either of the following:
yarn add @ubidots/vulcanui

npm i @ubidots/vulcanui

pnpm add @ubidots/vulcanui
  1. Using VulcanUI components: Once VulcanUI is installed you can use any of the components as follows.
import { Button } from "@ubidots/vulcanui";

function Component() {
  return (
    <Button variant="solid" color="danger">
      Click me
    </Button>
  );
}