We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
The text was updated successfully, but these errors were encountered:
Hello @aayushdutt, were you able to add the icon?
Sorry, something went wrong.
@afvr94 Nope. I still need help regarding this.
You should use renderInput prop, so something like this
const defaultRenderInput = (props) => { let { onChange, value, addTag, ...other } = props; return ( <span> <Box position="relative" top="3px" as={AiOutlineSearch} color="#f8b700" ></Box> <input type="text" onChange={onChange} value={value} {...other} /> </span> ); };
Box component in this case is acting as an icon that will appear in front of the input field.
<TagsInput renderInput={defaultRenderInput} onChange={(e) => handleTags(e)} value={tags} />
No branches or pull requests
Example:
The text was updated successfully, but these errors were encountered: