import type { InputHTMLAttributes, HTMLAttributes, PropsWithChildren } from "react";
const formClasses =
"block w-full appearance-none rounded-md border border-gray-200 bg-gray-50 px-3 py-2 text-gray-900 placeholder-gray-400 focus:border-blue-500 focus:bg-white focus:outline-none focus:ring-blue-500 sm:text-sm";
function Label({ id, children }: PropsWithChildren>) {
return (
);
}
export function TextField({
id,
label,
type = "text",
className = "",
...props
}: InputHTMLAttributes & { label?: string }) {
return (
{label && }
);
}