fix: 🏷️ Fix tipizzazione di `DrawerEntry`

This commit is contained in:
Maicol Battistini 2023-06-01 18:33:14 +02:00
parent 7ac65e8a69
commit 677388ebfb
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ import {ValueOf} from 'type-fest';
type Icons = ValueOf<typeof MaterialIcons>;
export interface DrawerEntryAttributes extends Attributes, ListItemLink {
export interface DrawerEntryAttributes extends Attributes, Partial<ListItemLink> {
href: ListItemLink['href'];
icon: Icons;
}