Beautiful React
UI Components

A collection of accessible, customizable, and production-ready React components. Built with TypeScript, styled with Tailwind CSS.

View on GitHub

Developer-friendly API

Import, compose, and customize. Our components are designed for seamless integration.

1import { Button } from "@component-labs/ui/button";
2import { Input } from "@component-labs/ui/input";
3import { Checkbox } from "@component-labs/ui/checkbox";
4
5export function LoginForm() {
6 return (
7 <form className="space-y-4">
8 <Input
9 label="Email"
10 type="email"
11 placeholder="you@example.com"
12 />
13 <Input
14 label="Password"
15 type="password"
16 />
17 <Checkbox label="Remember me" />
18 <Button variant="primary" size="lg" fullWidth>
19 Sign In
20 </Button>
21 </form>
22 );
23}