Elements / UI

UI Components

shadcn/ui primitives extended with RDS tokens. Copy-paste, accessible, Tailwind-native.

22
components
5
categories
Built on
shadcn/ui + Radix UI
Styling
Tailwind CSS v4
Accessibility
WCAG 2.1 AA
Install
npx shadcn@latest add <component>

Installation

Add a component

npx shadcn@latest add button
bash

Import & use

import { Button } from "@/components/ui/button"export function MyComponent() {  return <Button variant="outline">Click me</Button>}
tsx