Skip to content

Commit 03ab3a6

Browse files
avoid Component.defaultProps for icon components (#3602)
1 parent e3ca774 commit 03ab3a6

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.changeset/nervous-numbers-push.md

+5
Original file line numberDiff line numberDiff line change
@@ -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

+5-2
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ function generateIcon(
7474
.trimStart()
7575
.toLowerCase() + ' icon',
7676
): FC<ComponentProps<'svg'>> {
77-
RawComponent.defaultProps = { title };
78-
return RawComponent;
77+
function IconComponent(props: ComponentProps<'svg'>) {
78+
return <RawComponent title={title} {...props} />;
79+
}
80+
IconComponent.displayName = RawComponent.name;
81+
return IconComponent;
7982
}

0 commit comments

Comments
 (0)