We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea316c0 commit a25d467Copy full SHA for a25d467
packages/react/src/components/MultiSelect/MultiSelect.tsx
@@ -914,14 +914,16 @@ export const MultiSelect = React.forwardRef(
914
</div>
915
);
916
}
917
-);
+) as MultiSelectComponent;
918
919
type MultiSelectComponentProps<ItemType> = React.PropsWithChildren<
920
MultiSelectProps<ItemType>
921
> &
922
React.RefAttributes<HTMLButtonElement>;
923
924
interface MultiSelectComponent {
925
+ propTypes: Record<string, any>;
926
+ displayName: string;
927
<ItemType>(
928
props: MultiSelectComponentProps<ItemType>
929
): React.ReactElement<any> | null;
0 commit comments