We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c1acb commit 29cfafaCopy full SHA for 29cfafa
packages/kit-tailwind/src/components/tabs/tab.tsx
@@ -1,12 +1,16 @@
1
-import { component$, Slot, QwikIntrinsicElements } from '@builder.io/qwik';
+import {
2
+ component$,
3
+ Slot,
4
+ QwikIntrinsicElements,
5
+ PropFunction,
6
+} from '@builder.io/qwik';
7
import { Tab as HeadlessTab } from '@qwik-ui/headless';
8
9
export type TabProps = {
10
class?: string;
11
isLifted?: boolean;
12
isBordered?: boolean;
- // commented out if need to refactor. failing build due to this.
- // onClick$?: PropFunction<(clicked: number) => void>;
13
+ onClick$?: PropFunction<(clicked: number) => void>;
14
} & QwikIntrinsicElements['button'];
15
16
export const Tab = component$(
0 commit comments