GitHub

Introduction

Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source.

Usage

Copy the following code to integrate the button component into your project.

ButtonComponent.tsx
import { Button } from "@/ui/Button"

export function ButtonDemo() {
  return (
    <Button variant="primary" size="lg">
      Get Started
    </Button>
  )
}
react-principles