flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
17 lines (16 loc) • 703 B
TypeScript
export * from './tabs-types';
export declare const Tabs: import("@builder.io/qwik").FunctionComponent<{
align?: string | undefined;
} & import("@builder.io/qwik").HTMLElementAttrs & import("@builder.io/qwik").QwikAttributes<HTMLDivElement> & {
variant?: import("./tabs-types").TabsVariant;
directive?: "if" | "show";
onClickInteraction$?: () => void;
}> & {
Tab: import("@builder.io/qwik").Component<{
align?: string | undefined;
} & import("@builder.io/qwik").HTMLElementAttrs & import("@builder.io/qwik").QwikAttributes<HTMLDivElement> & {
active?: boolean;
disabled?: boolean;
icon?: import("@builder.io/qwik").Component<IconProps>;
}>;
};