diff options
author | Sofia <me@dzshn.xyz> | 2023-01-14 14:47:12 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-14 18:47:12 +0100 |
commit | 9338b92b1a3b68308950a20f0d694901e4c39e2a (patch) | |
tree | 0b25fcb93f60829471069ae919cbb653463aaee5 /src/webpack | |
parent | efb0ef8b9cd4fe83f6979a2f76218eefb5c0d8b8 (diff) | |
download | Vencord-9338b92b1a3b68308950a20f0d694901e4c39e2a.tar.gz Vencord-9338b92b1a3b68308950a20f0d694901e4c39e2a.tar.bz2 Vencord-9338b92b1a3b68308950a20f0d694901e4c39e2a.zip |
feat(SilentTyping): add toggle command and icon (#398)
Co-authored-by: Ven <vendicated@riseup.net>
Co-authored-by: Justice Almanzar <superdash993@gmail.com>
Diffstat (limited to 'src/webpack')
-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 2a7d587..855b887 100644 --- a/src/webpack/common.tsx +++ b/src/webpack/common.tsx @@ -79,6 +79,7 @@ export let Router: any; export let TextInput: any; export let Text: (props: TextProps) => JSX.Element; export const TextArea = findByCodeLazy("handleSetRef", "textArea") as React.ComponentType<React.PropsWithRef<any>>; +export const ButtonWrapperClasses = findByPropsLazy("buttonWrapper", "buttonContent") as Record<string, string>; export const Select = LazyComponent(() => findByCode("optionClassName", "popoutPosition", "autoFocus", "maxVisibleItems")); export const Slider = LazyComponent(() => findByCode("closestMarkerIndex", "stickToMarkers")); |