fix: introduced forwardRef (#181)

This commit is contained in:
Priscila Oliveira
2019-10-12 22:26:56 +02:00
committed by Juan Picado @jotadeveloper
parent a8deeb9b9d
commit 0c4fb7da13
14 changed files with 26 additions and 17 deletions

View File

@@ -1,8 +1,8 @@
import { default as MuiCard } from '@material-ui/core/Card';
import { default as MuiList } from '@material-ui/core/List';
import styled from 'react-emotion';
import { default as Typography } from '../../muiComponents/Heading';
import List from '../../muiComponents/List';
export const Wrapper = styled('div')({
display: 'flex',
@@ -28,11 +28,9 @@ export const Heading = styled(Typography)({
color: '#4b5e40',
});
export const List = styled(MuiList)({
'&&': {
padding: 0,
color: '#4b5e40',
},
export const StyledList = styled(List)({
padding: 0,
color: '#4b5e40',
});
export const Card = styled(MuiCard)({