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
classes
Looks like type for the classes prop is too strict. Users should either provide classes for all elements or for none.
classes?: { root: string; trail: string; path: string; text: string; background: string; };
I'd suggest to make all entries optional as from the code they seem to actually be that way.
classes?: { root?: string; trail?: string; path?: string; text?: string; background?: string; };
The text was updated successfully, but these errors were encountered:
I can test it and submit a PR if that works
Sorry, something went wrong.
No branches or pull requests
🚀 Feature request
Problem description
Looks like type for the
classes
prop is too strict. Users should either provide classes for all elements or for none.Suggested solution
I'd suggest to make all entries optional as from the code they seem to actually be that way.
The text was updated successfully, but these errors were encountered: