Installation

PreviousNext

Add skeuomorphic components to your React project.

This library is in early development. Installation via package manager is not yet available.

Getting Started

For now, you can explore and copy the source code directly from our GitHub repository.

Browse the component source files in apps/v4/registry/new-york-v4/ui/ to see how each component is built.

Requirements

  • React 18+
  • Tailwind CSS v4
  • TypeScript (recommended)

Usage

Once you've copied a component into your project:

import { Button } from "@/components/ui/button"
 
export function Demo() {
  return <Button>Click Me</Button>
}