Skip to content

Tag: reactjs

HTMLImageElement not valid as a React Child

I’m trying to load an image asynchronously and only when it’s been loaded, display it in a React app. I’m getting below error: Objects are not valid as a React child (found: [object HTMLImageElement]) I would like to know why this error is happening. Of course if I just add an <img> ta…

Can I choose which AntD icon to use with allowClear = true?

If I pass allowClear={true} to an AntD Input component, a small circle with an × appears at the end of the field once a user has typed something, which can be clicked to empty the contents of the field. Is there some way to instruct AntD to use a different icon? The AntD docs for reference: Input with Clear I…