From 74ddf27a6a3ae3bf2c40216a6efa533c622b0463 Mon Sep 17 00:00:00 2001 From: Ben Elferink Date: Sun, 23 Feb 2025 15:53:27 +0200 Subject: [PATCH] fix: icon group border --- src/components/icon-group/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/icon-group/index.tsx b/src/components/icon-group/index.tsx index 34f3e2e..8c13a79 100644 --- a/src/components/icon-group/index.tsx +++ b/src/components/icon-group/index.tsx @@ -34,7 +34,7 @@ const IconWrapper = styled.div<{ $status: IconGroupProps['status']; $size: numbe width: ${({ $size }) => $size}px; height: ${({ $size }) => $size}px; border-radius: 100%; - border: 2px solid ${({ $status, theme }) => ($status ? theme.text[$status] : theme.colors.primary)}; + border: 1px solid ${({ theme }) => theme.colors.primary}; background: ${({ $status, theme }) => ($status ? theme.colors[$status] : theme.colors.info)}; `