Skip to content

Commit a0dfff3

Browse files
committed
fix: replace QwikIntrinsicElements with PropsOf 🐵
1 parent 50194c8 commit a0dfff3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ā€Žpackages/qwik-image/src/lib/image.tsxā€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {
2+
PropsOf,
23
QRL,
3-
QwikIntrinsicElements,
44
component$,
55
createContextId,
66
useComputed$,
@@ -12,7 +12,7 @@ import {
1212

1313
export const DEFAULT_RESOLUTIONS = [3840, 1920, 1280, 960, 640];
1414

15-
type ImageAttributes = QwikIntrinsicElements['img'];
15+
type ImageAttributes = PropsOf<'img'>;
1616

1717
/**
1818
* @alpha

0 commit comments

Comments
Ā (0)