From 1ce7ac487489e6811a38b6847a51401bf2f6c2a2 Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 10 Oct 2023 12:19:37 +0200 Subject: [PATCH] fix(components): prevent alert icon to shrink --- src/components/alert/alert.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/alert/alert.tsx b/src/components/alert/alert.tsx index c15476a7..9ea6a8d1 100644 --- a/src/components/alert/alert.tsx +++ b/src/components/alert/alert.tsx @@ -42,8 +42,8 @@ export const Alert = ({ title, children, intent }: AlertProps) => { alertVariants[intent] )} > - -
+ +
{title}
{children &&
{children}
}