FIX warning of loading prop not being a string (#7080)

FIX warning of loading prop not being a string
This commit is contained in:
Norbert de Langen 2019-06-13 16:22:38 +02:00 committed by GitHub
commit b9ed9e6d55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,11 @@ const Icon = styled(Icons)(
({ isSelected }) => (isSelected ? { color: 'inherit' } : {})
);
export const Item = styled.div(
export const Item = styled(({ className, children, id }) => (
<div className={className} id={id}>
{children}
</div>
))(
{
fontSize: 13,
lineHeight: '16px',