From 5c783204a951966bf2490b1df880a834c9df316a Mon Sep 17 00:00:00 2001 From: Alexandr Isaev Date: Fri, 12 Jan 2024 21:59:19 +0300 Subject: [PATCH] fix: added Alert components types export --- src/components/Alert/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/components/Alert/index.ts b/src/components/Alert/index.ts index f289b9633d..7f2aee89e5 100644 --- a/src/components/Alert/index.ts +++ b/src/components/Alert/index.ts @@ -1,2 +1,8 @@ export {Alert} from './Alert'; -export type {AlertProps} from './types'; +export type { + AlertProps, + AlertTitleProps, + AlertActionProps, + AlertActionsProps, + AlertIconProps, +} from './types';