UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

18 lines (17 loc) 532 B
import type { BreadcrumbProps } from ".."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [BreadcrumbProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L302) * ## Props * @prop children * @prop solid = false * @prop class: className * @prop classes * @prop olClass * @prop ariaLabel = "Breadcrumb" * @prop ...restProps */ declare const Breadcrumb: import("svelte").Component<BreadcrumbProps, {}, "">; type Breadcrumb = ReturnType<typeof Breadcrumb>; export default Breadcrumb;