fix bad type

This commit is contained in:
konnorrogers
2023-08-17 17:20:56 -04:00
parent d6d94692a3
commit 796c4198c6

View File

@@ -58,8 +58,7 @@ components.map(component => {
React.ComponentPropsWithoutRef<ReactComponent> & {
ref?: React.ForwardedRef<Element>;
}
> &
Omit<React.FC<ReactComponent>, 'ref'>;
> & { displayName?: string }
const tagName = '${component.tagName}'