Merge pull request #12800 from Connormiha/optimize-checking-color-button

Components: Minor update checking color in Button
This commit is contained in:
Michael Shilman 2020-10-18 17:46:09 +08:00 committed by GitHub
commit 0cb78b9a33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,14 +83,12 @@ const ButtonWrapper = styled.button<ButtonWrapperProps>(
({ theme, primary, secondary, gray }) => {
let color;
if (primary) {
color = theme.color.primary;
}
if (secondary) {
color = theme.color.secondary;
}
if (gray) {
color = theme.color.medium;
} else if (secondary) {
color = theme.color.secondary;
} else if (primary) {
color = theme.color.primary;
}
return color
@ -199,12 +197,13 @@ const ButtonWrapper = styled.button<ButtonWrapperProps>(
},
({ theme, outline, primary, secondary }) => {
let color;
if (primary) {
color = theme.color.primary;
}
if (secondary) {
color = theme.color.secondary;
} else if (primary) {
color = theme.color.primary;
}
return outline && color
? {
boxShadow: `${color} 0 0 0 1px inset`,