Skip to content

Commit 29cfafa

Browse files
fix(website builds locally): n
n
1 parent 81c1acb commit 29cfafa

File tree

1 file changed

+7
-3
lines changed
  • packages/kit-tailwind/src/components/tabs

1 file changed

+7
-3
lines changed

packages/kit-tailwind/src/components/tabs/tab.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
import { component$, Slot, QwikIntrinsicElements } from '@builder.io/qwik';
1+
import {
2+
component$,
3+
Slot,
4+
QwikIntrinsicElements,
5+
PropFunction,
6+
} from '@builder.io/qwik';
27
import { Tab as HeadlessTab } from '@qwik-ui/headless';
38

49
export type TabProps = {
510
class?: string;
611
isLifted?: boolean;
712
isBordered?: boolean;
8-
// commented out if need to refactor. failing build due to this.
9-
// onClick$?: PropFunction<(clicked: number) => void>;
13+
onClick$?: PropFunction<(clicked: number) => void>;
1014
} & QwikIntrinsicElements['button'];
1115

1216
export const Tab = component$(

0 commit comments

Comments
 (0)