From 9338b92b1a3b68308950a20f0d694901e4c39e2a Mon Sep 17 00:00:00 2001 From: Sofia Date: Sat, 14 Jan 2023 14:47:12 -0300 Subject: feat(SilentTyping): add toggle command and icon (#398) Co-authored-by: Ven Co-authored-by: Justice Almanzar --- 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 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>; +export const ButtonWrapperClasses = findByPropsLazy("buttonWrapper", "buttonContent") as Record; export const Select = LazyComponent(() => findByCode("optionClassName", "popoutPosition", "autoFocus", "maxVisibleItems")); export const Slider = LazyComponent(() => findByCode("closestMarkerIndex", "stickToMarkers")); -- cgit