UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

40 lines (39 loc) 1.64 kB
import { SvelteComponentTyped } from "svelte"; import type { HTMLLiAttributes } from 'svelte/elements'; declare const __propDef: { props: HTMLLiAttributes & { home?: boolean; href?: string; linkClass?: string; spanClass?: string; homeClass?: string; classHome?: string; classLink?: string; classSpan?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: { icon: {}; default: {}; }; }; export type BreadcrumbItemProps = typeof __propDef.props; export type BreadcrumbItemEvents = typeof __propDef.events; export type BreadcrumbItemSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let home: $$Props['home'] = false; * @prop export let href: $$Props['href'] = undefined; * @prop export let linkClass: $$Props['linkClass'] = 'ms-1 text-sm font-medium text-gray-700 hover:text-gray-900 md:ms-2 dark:text-gray-400 dark:hover:text-white'; * @prop export let spanClass: $$Props['spanClass'] = 'ms-1 text-sm font-medium text-gray-500 md:ms-2 dark:text-gray-400'; * @prop export let homeClass: $$Props['homeClass'] = 'inline-flex items-center text-sm font-medium text-gray-700 hover:text-gray-900 dark:text-gray-400 dark:hover:text-white'; * @prop export let classHome: $$Props['classHome'] = ''; * @prop export let classLink: $$Props['classLink'] = ''; * @prop export let classSpan: $$Props['classSpan'] = ''; */ export default class BreadcrumbItem extends SvelteComponentTyped<BreadcrumbItemProps, BreadcrumbItemEvents, BreadcrumbItemSlots> { } export {};