Skip to content

Commit

Permalink
fix: icon group border
Browse files Browse the repository at this point in the history
  • Loading branch information
BenElferink committed Feb 23, 2025
1 parent 88da785 commit 74ddf27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/icon-group/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)};
`

Expand Down

0 comments on commit 74ddf27

Please sign in to comment.