import { InputHTMLAttributes, SelectHTMLAttributes, forwardRef } from 'react'
import clsx from 'clsx'
export const Input = forwardRef>(
function Input({ className, ...props }, ref) {
return (
)
}
)
export const Select = forwardRef>(
function Select({ className, children, ...props }, ref) {
return (
)
}
)
export function Label({ children, className }: { children: React.ReactNode; className?: string }) {
return
}