UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

35 lines (34 loc) 1.38 kB
import { SvelteComponentTyped } from "svelte"; import type { HTMLAttributes } from 'svelte/elements'; declare const __propDef: { props: HTMLAttributes<HTMLDivElement> & { solid?: boolean; navClass?: string; solidClass?: string; olClass?: string; ariaLabel?: string; classOl?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type BreadcrumbProps = typeof __propDef.props; export type BreadcrumbEvents = typeof __propDef.events; export type BreadcrumbSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let solid: $$Props['solid'] = false; * @prop export let navClass: NonNullable<$$Props['navClass']> = 'flex'; * @prop export let solidClass: NonNullable<$$Props['solidClass']> = 'flex px-5 py-3 text-gray-700 border border-gray-200 rounded-lg bg-gray-50 dark:bg-gray-800 dark:border-gray-700'; * @prop export let olClass: $$Props['olClass'] = 'inline-flex items-center space-x-1 rtl:space-x-reverse md:space-x-3 rtl:space-x-reverse'; * @prop export let ariaLabel: $$Props['ariaLabel'] = 'Breadcrumb'; * @prop export let classOl: $$Props['classOl'] = ''; */ export default class Breadcrumb extends SvelteComponentTyped<BreadcrumbProps, BreadcrumbEvents, BreadcrumbSlots> { } export {};