Nicholai 84be4cc055 feat: initial dashboard-app-template setup
- Next.js 15 with Cloudflare Workers deployment via OpenNext
- ooIDE theme from tweakcn (Sora + IBM Plex Mono fonts, oklch colors)
- Full shadcn/ui component library installed
- dashboard-01 template at /dashboard route
- Simple landing page with link to dashboard
2026-01-22 04:38:44 -07:00

25 lines
611 B
TypeScript

"use client"
import * as React from "react"
import * as LabelPrimitive from "@radix-ui/react-label"
import { cn } from "@/lib/utils"
function Label({
className,
...props
}: React.ComponentProps<typeof LabelPrimitive.Root>) {
return (
<LabelPrimitive.Root
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 }