Skip to content

Commit

Permalink
fix(BaseButton): use action color instead of info color
Browse files Browse the repository at this point in the history
  • Loading branch information
glenngijsberts committed Aug 25, 2023
1 parent 2eba69a commit 7ccbacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BaseButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const StyledButton = styled.button<ButtonProps>`
? color.failure
: props.variant === ButtonVariant.warning
? color.warning
: color.info};
: color.action};
font-weight: ${fontWeight.semiBold};
cursor: ${props => (props.disabled ? 'not-allowed' : 'pointer')};
Expand Down

0 comments on commit 7ccbacd

Please sign in to comment.