We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3ca774 commit 03ab3a6Copy full SHA for 03ab3a6
.changeset/nervous-numbers-push.md
@@ -0,0 +1,5 @@
1
+---
2
+'@graphiql/react': patch
3
4
+
5
+Avoid using deprecated Component.defaultProps for icon titles
packages/graphiql-react/src/icons/index.ts packages/graphiql-react/src/icons/index.tsx
@@ -74,6 +74,9 @@ function generateIcon(
74
.trimStart()
75
.toLowerCase() + ' icon',
76
): FC<ComponentProps<'svg'>> {
77
- RawComponent.defaultProps = { title };
78
- return RawComponent;
+ function IconComponent(props: ComponentProps<'svg'>) {
+ return <RawComponent title={title} {...props} />;
79
+ }
80
+ IconComponent.displayName = RawComponent.name;
81
+ return IconComponent;
82
}
0 commit comments