chore: remove unnecessary 'as any'

This commit is contained in:
Kevin Østerkilde 2022-02-28 17:56:08 +01:00 committed by GitHub
parent ad5ba1eb30
commit 54abcbfff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,8 @@ const List = styled.div({
paddingBottom: 4,
paddingRight: 4,
paddingTop: 4,
fontWeight: '400',
} as any);
fontWeight: 400,
});
const Item = styled.div<{ elementWidth: number }>(({ elementWidth }) => {
const maxWidthBeforeBreak = 407;