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 640d4c2 commit 15c1f6bCopy full SHA for 15c1f6b
admin/src/pages/HomePage/components/NavigationItemListItem/ItemCardBadge/index.ts
@@ -4,7 +4,7 @@ import styled from 'styled-components';
4
export const ItemCardBadge = styled(Badge).withConfig({
5
shouldForwardProp: (prop) => !['small'].includes(prop),
6
})`
7
- border: 1px solid ${({ theme, borderColor }) => theme.colors[borderColor]};
+ border: 1px solid ${({ theme, borderColor }) => theme.colors[borderColor as keyof typeof theme.colors]};
8
9
${({ small, theme }) =>
10
small &&
package.json
@@ -162,5 +162,5 @@
162
"npm": ">=6.0.0"
163
},
164
"license": "MIT",
165
- "packageManager": "yarn@4.6.0"
+ "packageManager": "yarn@1.22.22"
166
}
0 commit comments