type Props = { id?:string, name?:string, type?:string, placeHolder?:string, labelName?:string, inputClass?:string, value:string, onChange:(event?: any)=>any } export default function FloatLabelInput({ id, name, type, placeHolder, labelName, value, inputClass, onChange }:Props) { return (
) }