#How can i extends the props of the FloatingLabelInput with TextInputsProps?
3 messages · Page 1 of 1 (latest)
interface FloatingInputProps extends TextInputProps {}
i mean, beside extending the interface, i am trying to know if its possible to auto-asign the props to the inputText, like {...props} because i got the interface working with the custom Component but adding the props do nothing if i dont add them on the textInput obv
onClick={()=>{"click"}}` //do nothing if i dont configure it manually as a prop of the TextInput