-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
At the moment, the user can only provide a string to the label prop from an Item :
interface ItemProps {
icon?: React.ReactNode;
action?: () => void;
label: string;
helper?: string;
isActive?: boolean;
}It could be better to provide a ReactNode to provide more flexibility :
interface ItemProps {
icon?: React.ReactNode;
action?: () => void;
label: React.ReactNode;
helper?: string;
isActive?: boolean;
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers