import { InputHTMLAttributes, SelectHTMLAttributes, ReactNode } from "react";
interface InputProps extends InputHTMLAttributes {
label?: string;
}
export function Input({ label, className = "", ...props }: InputProps) {
return (
);
}
interface SelectProps extends SelectHTMLAttributes {
label?: string;
children: ReactNode;
}
export function Select({ label, children, className = "", ...props }: SelectProps) {
return (
);
}