flowbite-qwik
Version:
Official Qwik components built for Flowbite and Tailwind CSS
17 lines (16 loc) • 559 B
TypeScript
import { Component, FunctionComponent, PropsOf } from '@builder.io/qwik';
import { TabsVariant } from '../../components/Tabs/tabs-types';
import type { IconProps } from 'flowbite-qwik-icons';
type TabsProps = PropsOf<'div'> & {
variant?: TabsVariant;
directive?: 'if' | 'show';
onClickInteraction$?: () => void;
};
export declare const Tabs: FunctionComponent<TabsProps>;
type TabProps = PropsOf<'div'> & {
active?: boolean;
disabled?: boolean;
icon?: Component<IconProps>;
};
export declare const Tab: Component<TabProps>;
export {};