flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
27 lines (26 loc) • 637 B
TypeScript
import { ClassList, PropsOf } from '@builder.io/qwik';
export type NavbarTheme = {
nav?: {
main?: ClassList;
wrapper?: ClassList;
};
link?: {
main?: ClassList;
active?: ClassList;
inactive?: ClassList;
disabled?: ClassList;
};
toggle?: ClassList;
};
type NavbarProps = PropsOf<'nav'> & {
menuOpen?: boolean;
fluid?: boolean;
rounded?: boolean;
border?: boolean;
sticky?: boolean;
separator?: boolean;
fullWidth?: boolean;
theme?: NavbarTheme;
};
export declare const Navbar: import("@builder.io/qwik").Component<NavbarProps>;
export {};