Manual Install Setup
If you're not using shadcn/ui, you can install the components manually. Follow the steps below to prepare for the components manual installation.
info
Components installed manually do not use shadcn/ui specific colors.
Install dependencies
- npm
- pnpm
- bun
- yarn
bash
npm install tailwind-merge clsx react-dropzone lucide-react
bash
pnpm add tailwind-merge clsx react-dropzone lucide-react
shell
bun add tailwind-merge clsx react-dropzone lucide-react
bash
yarn add tailwind-merge clsx react-dropzone lucide-react
Add the cn helper
src/lib/utils.tsts
import { clsx, type ClassValue } from 'clsx';import { twMerge } from 'tailwind-merge';export function cn(...inputs: ClassValue[]) {return twMerge(clsx(inputs));}
Start adding the components
Now you can follow the manual installation guide for the components you need.