Skip to content

Commit 5d269ce

Browse files
committed
fix: add type keyword to imported types
1 parent cf91aa5 commit 5d269ce

File tree

37 files changed

+37
-37
lines changed

37 files changed

+37
-37
lines changed

apps/website/src/routes/docs/styled/accordion/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ qwik-ui add accordion
2121
```
2222

2323
```tsx
24-
import { component$, Slot, PropsOf } from '@builder.io/qwik';
24+
import { component$, Slot, type PropsOf } from '@builder.io/qwik';
2525

2626
import { Accordion as HeadlessAccordion } from '@qwik-ui/headless';
2727
import { cn } from '@qwik-ui/utils';

apps/website/src/routes/docs/styled/alert/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ qwik-ui add alert
2121
```
2222

2323
```tsx
24-
import { component$, Slot, PropsOf } from '@builder.io/qwik';
24+
import { component$, Slot, type PropsOf } from '@builder.io/qwik';
2525
import { cn } from '@qwik-ui/utils';
2626

2727
import { cva, type VariantProps } from 'class-variance-authority';

apps/website/src/routes/docs/styled/avatar/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ qwik-ui add avatar
2121
```
2222

2323
```tsx
24-
import { PropsOf, Slot, component$ } from '@builder.io/qwik';
24+
import { type PropsOf, Slot, component$ } from '@builder.io/qwik';
2525
import { cn } from '@qwik-ui/utils';
2626

2727
const Root = component$<PropsOf<'div'>>(({ ...props }) => {

apps/website/src/routes/docs/styled/badge/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ qwik-ui add badge
1919
```
2020

2121
```tsx
22-
import { component$, PropsOf, Slot } from '@builder.io/qwik';
22+
import { component$, type PropsOf, Slot } from '@builder.io/qwik';
2323
import { cn } from '@qwik-ui/utils';
2424
import { cva, type VariantProps } from 'class-variance-authority';
2525

apps/website/src/routes/docs/styled/breadcrumb/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ qwik-ui add breadcrumb
2121
```
2222

2323
```tsx
24-
import { PropsOf, Slot, component$ } from '@builder.io/qwik';
24+
import { type PropsOf, Slot, component$ } from '@builder.io/qwik';
2525
import { cn } from '@qwik-ui/utils';
2626
import { LuChevronRight } from '@qwikest/icons/lucide';
2727

apps/website/src/routes/docs/styled/button/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ qwik-ui add button
1111
```
1212

1313
```tsx
14-
import { component$, PropsOf, Slot } from '@builder.io/qwik';
14+
import { component$, type PropsOf, Slot } from '@builder.io/qwik';
1515
import { cn } from '@qwik-ui/utils';
1616
import { cva, type VariantProps } from 'class-variance-authority';
1717

apps/website/src/routes/docs/styled/checkbox/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ qwik-ui add checkbox
2525
```
2626

2727
```tsx
28-
import { $, PropsOf, component$ } from '@builder.io/qwik';
28+
import { $, type PropsOf, component$ } from '@builder.io/qwik';
2929
import { cn } from '@qwik-ui/utils';
3030

3131
export const Checkbox = component$<PropsOf<'input'>>(

apps/website/src/routes/docs/styled/combobox/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ qwik-ui add combobox
2121
```
2222

2323
```tsx
24-
import { PropsOf, Slot, component$ } from '@builder.io/qwik';
24+
import { type PropsOf, Slot, component$ } from '@builder.io/qwik';
2525
import { Combobox as HeadlessCombobox } from '@qwik-ui/headless';
2626
import { cn } from '@qwik-ui/utils';
2727
import { LuChevronDown } from '@qwikest/icons/lucide';

apps/website/src/routes/docs/styled/label/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ qwik-ui add label
2121
```
2222

2323
```tsx
24-
import { component$, Slot, PropsOf } from '@builder.io/qwik';
24+
import { component$, Slot, type PropsOf } from '@builder.io/qwik';
2525
import { Label as HeadlessLabel } from '@qwik-ui/headless';
2626
import { cn } from '@qwik-ui/utils';
2727

apps/website/src/routes/docs/styled/modal/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ qwik-ui add modal
2121
```
2222

2323
```tsx
24-
import { PropsOf, Slot, component$ } from '@builder.io/qwik';
24+
import { type PropsOf, Slot, component$ } from '@builder.io/qwik';
2525
import { Modal as HeadlessModal } from '@qwik-ui/headless';
2626
import { cn } from '@qwik-ui/utils';
2727
import { cva, type VariantProps } from 'class-variance-authority';

0 commit comments

Comments
 (0)