flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
12 lines (11 loc) • 443 B
TypeScript
import { Component, FunctionComponent, PropsOf } from '@builder.io/qwik';
import type { IconProps } from 'flowbite-qwik-icons';
type SidebarCollapseProps = PropsOf<'div'> & {
label: string;
border?: boolean;
icon?: Component<IconProps>;
opened?: boolean;
};
export declare const SidebarCollapse: FunctionComponent<SidebarCollapseProps>;
export declare const InternalSidebarCollapse: Component<SidebarCollapseProps>;
export {};