← All components

Shadcn UI (Button, Card)

Adds the shadcn/ui `cn` utility plus Button and Card primitives, styled with Tailwind and class-variance-authority.

Copy the files below, or open this folder on GitHub. Each file is stamped with a limited-use licence, generator and date. SHA-256 is of the published catalog bytes, before the stamp.

id
shadcn-ui
stack
Next.js
version
1.0.0
compatibility
nextjs >=16 <17 · react >=19 <20
requires
tailwind
env vars
Verified passing · daily buildIntegrity sha256:d6cf1d2c25e92eba

Files (3)

lib/utils.ts · sha256:d6cf1d2c25e92eba…
// Licensed by BotKelp — https://www.botkelp.com

import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';

export function cn(...inputs: ClassValue[]): string {
  return twMerge(clsx(inputs));
}