mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 23:40:39 +01:00
feat(HorizontalNavigation): new component (#1279)
This commit is contained in:
13
src/runtime/types/horizontal-navigation.d.ts
vendored
Normal file
13
src/runtime/types/horizontal-navigation.d.ts
vendored
Normal 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
|
||||
}
|
||||
1
src/runtime/types/index.d.ts
vendored
1
src/runtime/types/index.d.ts
vendored
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user