emoji-mart: Fix CustomIcons typings (#40734) (#41871)

This commit is contained in:
Adrien
2020-01-27 10:53:04 -08:00
committed by Wesley Wigham
parent 26b896da0d
commit a82a0b7c16
+1 -1
View File
@@ -56,7 +56,7 @@ export interface I18n {
export type PartialI18n = Partial<Pick<I18n, 'search' | 'notfound'> & { categories: Partial<I18n['categories']> }>;
export interface CustomIcons {
categories: Record<CategoryName, () => React.Component>;
categories: Record<CategoryName, () => React.ReactNode>;
}
export interface PickerProps {