Getting Started
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.
Install VaneUI using your preferred package manager:
npm install @vaneui/ui
yarn add @vaneui/ui
pnpm add @vaneui/ui
VaneUI requires Tailwind CSS. Install it if you haven't already:
npm install -D tailwindcss
Add Tailwind directives to your CSS:
@tailwind base;
@tailwind components;
@tailwind utilities;
Start using VaneUI components:
import { Button, Stack } from '@vaneui/ui';
function App() {
return (
<Stack>
<Button primary>Get Started</Button>
</Stack>
);
}