"use client"; import * as React from "react"; import { cn } from "@/lib/utils"; export function Select({ className, children, ...props }: React.SelectHTMLAttributes) { return ( ); } export function FormField({ label, error, children, className, }: { label?: string; error?: string; children: React.ReactNode; className?: string; }) { return (
{label ? : null} {children} {error ?

{error}

: null}
); } export function Checkbox({ label, className, ...props }: React.InputHTMLAttributes & { label?: string }) { return ( ); } export function MoneyInput({ className, ...props }: Omit, "type">) { return ( ); }