mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:01:08 +08:00
Merge pull request #12800 from Connormiha/optimize-checking-color-button
Components: Minor update checking color in Button
This commit is contained in:
commit
0cb78b9a33
@ -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`,
|
||||
|
Loading…
x
Reference in New Issue
Block a user