Inovex Components

components

Inovex Components is a modern, open-source UI component library crafted for speed, flexibility, and consistency. Whether you're building a dashboard, admin panel, or full-scale web app, this library offers a growing collection of reusable components designed to accelerate development without sacrificing design or performance.

Required installations

1npm install class-variance-authority

cn Helper Function

/components/utils.ts
1import type { ClassValue } from "clsx";
2
3import { twMerge } from "tailwind-merge";
4import { clsx } from "clsx";
5
6export function cn(...Inputs: ClassValue[]) {
7 return twMerge(clsx(Inputs));
8};