VaneUI

VaneUI

Getting Started

Installation

Follow these steps to get the library installed and ready to use in your application.

VaneUI is a React component library built with TypeScript and Tailwind CSS.

How to install VaneUI

Install VaneUI using your preferred package manager:

npm install @vaneui/ui
yarn add @vaneui/ui
pnpm add @vaneui/ui

Setup

VaneUI requires Tailwind CSS. Install it if you haven't already:

npm install -D tailwindcss

Add Tailwind directives to your CSS:

css-icon
@tailwind base;
@tailwind components;
@tailwind utilities;

Getting Started

Start using VaneUI components:

react-icon
import { Button, Stack } from '@vaneui/ui';
function App() {
return (
<Stack>
<Button primary>Get Started</Button>
</Stack>
);
}