import * as React from "react"; import { cn } from "@/lib/utils"; export const Input = React.forwardRef>( ({ className, ...props }, ref) => ( ), ); Input.displayName = "Input"; export const Select = React.forwardRef>( ({ className, children, ...props }, ref) => ( ), ); Select.displayName = "Select"; export function FieldLabel({ children, htmlFor }: { children: React.ReactNode; htmlFor?: string }) { return ( ); }