We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d17540a commit bc2a747Copy full SHA for bc2a747
packages/components/src/Accordion/AccordionDisclosure.tsx
@@ -136,7 +136,8 @@ export const AccordionDisclosureStyle = styled.div
136
}))<AccordionDisclosureStyleProps>`
137
align-items: center;
138
background-color: transparent;
139
- ${({ color }) => (color ? colorStyleFn : 'color: currentColor;')}
+ ${({ color, theme }) =>
140
+ color ? colorStyleFn : `color: ${theme.colors.ui5};`}
141
cursor: pointer;
142
display: flex;
143
outline: 1px solid transparent;
0 commit comments