Vedix UI is a modern, developer-first UI component system for React applications.
It provides a powerful CLI that allows developers to quickly add production-ready components into their projects while maintaining full control over the source code.
Unlike traditional UI frameworks, Vedix UI copies the component source directly into your project so you can customize, extend, and maintain your UI without limitations.
Explore all components with examples and usage guides.
π https://vedix-ui.vercel.app
- Developer-First CLI β Add components instantly using a simple command.
- Copy-Paste Architecture β Components are added directly into your project.
- Custom Theming β Built-in support for light and dark themes.
- Tailwind CSS Powered β Clean and modern styling using Tailwind.
- Accessible Components β Built on top of Radix UI primitives.
- TypeScript Ready β Fully typed components for a better developer experience.
- Modular System β Install only the components you need.
Install the Vedix UI package in your project:
npm install @vedix/uiOr run the CLI directly using npx:
npx @vedix/ui initRun the initialization command in your project root:
npx @vedix/ui initThis command will:
- Create a
vedix.config.jsonconfiguration file - Set up global styles and theme variables
- Create utility helpers
- Install required dependencies
You will also be asked where to store your UI components.
Default path:
src/components/ui
Use the CLI to add components from the Vedix UI registry.
Example:
npx @vedix/ui add button
npx @vedix/ui add dialog
npx @vedix/ui add formThe CLI will automatically:
- Copy the component source code into your project
- Install required dependencies
- Configure imports if necessary
After adding a component, you can use it like this:
import { Button } from "@/components/ui/button"
export default function Page() {
return (
<div>
<Button>Click me</Button>
</div>
)
}Vedix UI includes a rich collection of modern UI components.
- Button
- Badge
- Label
- Separator
- Input
- Textarea
- Checkbox
- Select
- Switch
- Radio Group
- Form
- Card
- Tabs
- Accordion
- Scroll Area
- Table
- Alert
- Progress
- Skeleton
- Tooltip
- Dialog
- Popover
- Alert Dialog
- Hover Card
- Sheet
- Context Menu
- Dropdown Menu
- Command
- Calendar
- Navigation Menu
- Sidebar
Vedix UI is built using modern frontend technologies:
- React
- Tailwind CSS
- Radix UI
- React Hook Form
- Framer Motion
- Lucide Icons
Vedix UI is ideal for teams building custom design systems. Since components are copied into your project, you have full control over them.
Quickly build modern interfaces without spending time implementing complex UI components.
All components are production-ready and designed with accessibility and performance in mind.
Vedix UI follows a simple principle:
Developers should own their UI components.
Instead of locking you into a framework, Vedix UI gives you full control of the code.
Upcoming improvements for Vedix UI:
- Component playground
- Theme generator
- Figma design kit
- Additional components
- Improved CLI tooling
MIT License


