From 06aa72c636c45220e4b30721f725b151f7a6db18 Mon Sep 17 00:00:00 2001 From: Sammy Date: Sat, 7 Jan 2023 22:52:55 +0100 Subject: feat(Plugin): InvisibleChat (#349) Co-authored-by: Ven --- src/webpack/common.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'src/webpack/common.tsx') diff --git a/src/webpack/common.tsx b/src/webpack/common.tsx index 9024ff9..2a7d587 100644 --- a/src/webpack/common.tsx +++ b/src/webpack/common.tsx @@ -72,6 +72,7 @@ export const Forms = {} as { }; export let Card: Components.Card; export let Button: any; +export const ButtonLooks = findByPropsLazy("BLANK", "FILLED", "INVERTED") as Record<"FILLED" | "INVERTED" | "OUTLINED" | "LINK" | "BLANK", string>; export let Switch: any; export let Tooltip: Components.Tooltip; export let Router: any; -- cgit