UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

8 lines (7 loc) 271 B
import { Component, PropsOf } from '@builder.io/qwik'; import type { IconProps } from 'flowbite-qwik-icons'; type NavbarToggleProps = PropsOf<'button'> & { barIcon?: Component<IconProps>; }; export declare const NavbarToggle: Component<NavbarToggleProps>; export {};