feat: update Home component with new UI elements and improved request handling chore: add components.json for component configuration feat: implement Badge component for status indication feat: create Button component for consistent styling feat: develop Card component structure for content display feat: add Input component for user input fields feat: implement Label component for form accessibility feat: create Select component for dropdown functionality feat: add Separator component for visual separation feat: implement Toaster component for notifications feat: create Tabs component for tabbed navigation feat: add Textarea component for multi-line input feat: add utility functions for class name management
21 lines
518 B
TypeScript
21 lines
518 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
function Label({ className, ...props }: React.ComponentProps<"label">) {
|
|
return (
|
|
<label
|
|
data-slot="label"
|
|
className={cn(
|
|
"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export { Label }
|