mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-31 04:07:56 +01:00
chore(Navigation): typo in type
This commit is contained in:
@@ -11,7 +11,7 @@ const appConfig = _appConfig as AppConfig & { ui: { navigationMenu: Partial<type
|
|||||||
|
|
||||||
const navigationMenu = tv({ extend: tv(theme), ...(appConfig.ui?.navigationMenu || {}) })
|
const navigationMenu = tv({ extend: tv(theme), ...(appConfig.ui?.navigationMenu || {}) })
|
||||||
|
|
||||||
export interface NavigationMenuchildItem extends Omit<LinkProps, 'custom'> {
|
export interface NavigationMenuChildItem extends Omit<LinkProps, 'custom'> {
|
||||||
label: string
|
label: string
|
||||||
description?: string
|
description?: string
|
||||||
icon?: string
|
icon?: string
|
||||||
@@ -25,7 +25,7 @@ export interface NavigationMenuItem extends Omit<LinkProps, 'custom'>, Pick<Navi
|
|||||||
badge?: string | number | BadgeProps
|
badge?: string | number | BadgeProps
|
||||||
trailingIcon?: string
|
trailingIcon?: string
|
||||||
slot?: string
|
slot?: string
|
||||||
children?: NavigationMenuchildItem[]
|
children?: NavigationMenuChildItem[]
|
||||||
select? (e: MouseEvent): void
|
select? (e: MouseEvent): void
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user