From cd53cf38fe6330699495c9c26d29e37322d3082a Mon Sep 17 00:00:00 2001 From: V Date: Sat, 13 May 2023 23:58:24 +0200 Subject: ReverseImageSearch: Add engine icons --- src/webpack/common/types/menu.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/webpack') diff --git a/src/webpack/common/types/menu.d.ts b/src/webpack/common/types/menu.d.ts index 8e9218f..58ea626 100644 --- a/src/webpack/common/types/menu.d.ts +++ b/src/webpack/common/types/menu.d.ts @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import type { ComponentType, CSSProperties, MouseEvent, PropsWithChildren, UIEvent } from "react"; +import type { ComponentType, CSSProperties, MouseEvent, PropsWithChildren, ReactNode, UIEvent } from "react"; type RC = ComponentType>>; @@ -35,7 +35,7 @@ export interface Menu { }>; MenuItem: RC<{ id: string; - label: string; + label: ReactNode; action?(e: MouseEvent): void; icon?: ComponentType; -- cgit