Migrate Engines to God Mode and add Directus Shim

This commit is contained in:
cawcenter
2025-12-14 18:51:56 -05:00
parent e2953a37c4
commit 701ac12d57
91 changed files with 7785 additions and 97 deletions

View File

@@ -0,0 +1,12 @@
import * as React from "react"
import { cn } from "@/lib/utils"
const Label = React.forwardRef<HTMLLabelElement, React.LabelHTMLAttributes<HTMLLabelElement>>(
({ className, ...props }, ref) => (
<label ref={ref} className={cn("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70", className)} {...props} />
)
)
Label.displayName = "Label"
export { Label }