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
All buttons across the app need to be the Material Tailwind style button. Could be a regular button, button with icon or outlined button.
Refer to the above links for Material Tailwind docs.
Example (see this commit for code):
<button className={style.button} onClick={handleAddNewAgencyModal}> <FaPlus className="text-blue-600 mr-2" size={12}/> Add Agency </button>
should be changed to :
<Button onClick={handleAddNewAgencyModal}> <FaPlus size={12} /> Add Agency </Button>
Suggestion: Do a codebase search (Shift + Command + F) for: <button. And change each.
<button
The text was updated successfully, but these errors were encountered:
@risha-van Thanks again for working on this project Risha :) Excited to see!
Sorry, something went wrong.
@risha-van Have you been able to get a working branch for me to look at? All to say, we should get this polished off to merge into the main branch.
Please let me know, thanks :)
No branches or pull requests
All buttons across the app need to be the Material Tailwind style button. Could be a regular button, button with icon or outlined button.
Refer to the above links for Material Tailwind docs.
Example (see this commit for code):
should be changed to :
Suggestion: Do a codebase search (Shift + Command + F) for:
<button
. And change each.The text was updated successfully, but these errors were encountered: