flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
13 lines (12 loc) • 447 B
TypeScript
import { PropsOf, Component } from '@builder.io/qwik';
import type { IconProps } from 'flowbite-qwik-icons';
import type { LinkProps } from '@builder.io/qwik-city';
type BreadcrumbItemProps = PropsOf<'a'> & {
home?: boolean;
href?: string;
tag?: Component<LinkProps> | string;
homeIcon?: Component<IconProps>;
arrowIcon?: Component<IconProps>;
};
export declare const BreadcrumbItem: Component<BreadcrumbItemProps>;
export {};