diff options
author | Sammy <sammy@sammcheese.net> | 2023-01-07 22:52:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-07 22:52:55 +0100 |
commit | 06aa72c636c45220e4b30721f725b151f7a6db18 (patch) | |
tree | 155b524d5f4fef2c922cda040cb2b8555416f413 /src/webpack/common.tsx | |
parent | 1713450540caeb5d4f79582099ab98915330f785 (diff) | |
download | Vencord-06aa72c636c45220e4b30721f725b151f7a6db18.tar.gz Vencord-06aa72c636c45220e4b30721f725b151f7a6db18.tar.bz2 Vencord-06aa72c636c45220e4b30721f725b151f7a6db18.zip |
feat(Plugin): InvisibleChat (#349)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/webpack/common.tsx')
-rw-r--r-- | src/webpack/common.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
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; |