We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6383e1 commit 1dfd9a0Copy full SHA for 1dfd9a0
src/core/GradientTexture.tsx
@@ -16,14 +16,13 @@ type Props = {
16
type?: GradientType
17
innerCircleRadius?: number
18
outerCircleRadius?: string | number
19
-} & JSX.IntrinsicElements['texture']
+} & Omit<JSX.IntrinsicElements['texture'], 'type'>
20
21
export function GradientTexture({
22
stops,
23
colors,
24
size = 1024,
25
width = 16,
26
- //@ts-ignore - weird error about type never, although the type is clearly defined
27
type = GradientType.Linear,
28
innerCircleRadius = 0,
29
outerCircleRadius = 'auto',
0 commit comments