-
Notifications
You must be signed in to change notification settings - Fork 130
Open
Description
π 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.
classes?: {
root: string;
trail: string;
path: string;
text: string;
background: string;
};Suggested solution
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;
};Metadata
Metadata
Assignees
Labels
No labels