For the complete documentation index, see llms.txt. Markdown variants are available at explicit .md URLs. An agent skill is available at /.well-known/agent-skills/site-skill.md.
0

Your Component

Basic usage of the YourComponent template.

Replace this placeholder with your custom shadcn component

Edit src/registry/luma/your-component.tsx to get started

import type { HTMLAttributes } from "react";
import { forwardRef } from "react";

Usage

After you add the component with the CLI, import it from your UI folder:

import { YourComponent } from "@/components/ui/your-component";
 
export function MyComponent() {
  return <YourComponent />;
}