@ubidots/vulcanui
Version:
React UI components library from Ubidots
34 lines (25 loc) • 711 B
Markdown
<p align="center">
<a href="https://github.com/ubidots">
<img width="20%" src="https://avatars.githubusercontent.com/u/884496?s=200&v=4" alt="Ubidots" />
<h1 align="center">VulcanUI</h1>
</a>
</p>
</br>
## Quick Start
1. Installation: Inside your React project directory, install VulcanUI by running either of the following:
```bash
yarn add @ubidots/vulcanui
npm i @ubidots/vulcanui
pnpm add @ubidots/vulcanui
```
2. Using VulcanUI components: Once VulcanUI is installed you can use any of the components as follows.
```jsx
import { Button } from "@ubidots/vulcanui";
function Component() {
return (
<Button variant="solid" color="danger">
Click me
</Button>
);
}
```