From 802ba28454210a00bbfd59b730c38a45d2cbe471 Mon Sep 17 00:00:00 2001 From: Giuseppe Battistella Date: Thu, 20 May 2021 09:32:10 -0300 Subject: [PATCH] fix(InputGroup): Added missing export --- src/components/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/index.ts b/src/components/index.ts index f1714b77..94ed5bda 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -33,6 +33,9 @@ export type { HighlightProps } from "./Highlight/Highlight" export { default as Icon } from "./Icon/Icon" export type { IconProps } from "./Icon/Icon" +export { default as InputGroup } from "./InputGroup/InputGroup" +export type { InputGroupProps } from "./InputGroup/InputGroup" + export { default as Input } from "./Input/Input" export type { InputProps } from "./Input/Input"