feat(HorizontalNavigation): new component (#1279)

This commit is contained in:
Benjamin Canac
2024-01-25 10:21:06 +01:00
committed by GitHub
parent b76e761bbb
commit b8007bab5e
12 changed files with 321 additions and 34 deletions

View File

@@ -0,0 +1,13 @@
import type { Link } from './link'
import type { Avatar } from './avatar'
import type { Badge } from './badge'
export interface HorizontalNavigationLink extends Link {
label: string
labelClass?: string
icon?: string
iconClass?: string
avatar?: Avatar
click?: Function
badge?: string | number | Badge
}

View File

@@ -10,6 +10,7 @@ export * from './command-palette'
export * from './dropdown'
export * from './form-group'
export * from './form'
export * from './horizontal-navigation'
export * from './input'
export * from './kbd'
export * from './link'