feat(Breadcrumb): new component (#506)

Co-authored-by: Eduard Aymerich <eduardaymerich@gmail.com>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Haytham A. Salama
2023-11-16 19:06:51 +02:00
committed by GitHub
parent a97593985c
commit a35bfc7343
11 changed files with 282 additions and 2 deletions

7
src/runtime/types/breadcrumb.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import type { Link } from './link'
export interface BreadcrumbLink extends Link {
label: string
icon?: string
iconClass?: string
}

View File

@@ -1,6 +1,7 @@
export * from './accordion'
export * from './avatar'
export * from './badge'
export * from './breadcrumb'
export * from './button'
export * from './clipboard'
export * from './command-palette'