feat: add Label, Select, Textarea; add size variant to Input (v0.2.0)
ci / build-and-design (push) Failing after 1s

This commit is contained in:
2026-07-16 01:18:57 -05:00
parent 78fa3f03c4
commit 9ee7368841
6 changed files with 101 additions and 22 deletions
+4 -1
View File
@@ -6,7 +6,10 @@ export { setTheme, toggleTheme } from "./lib/theme";
// Primitives
export { Button, buttonVariants, type ButtonProps } from "./components/button";
export { Card, CardHeader, CardTitle, CardDescription, CardContent, CardFooter } from "./components/card";
export { Input } from "./components/input";
export { Input, inputVariants, type InputProps } from "./components/input";
export { Select, selectVariants, type SelectProps } from "./components/select";
export { Textarea, type TextareaProps } from "./components/textarea";
export { Label } from "./components/label";
export { Badge, badgeVariants, type BadgeProps } from "./components/badge";
export {
Dialog, DialogTrigger, DialogClose, DialogContent,