1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-19 01:25:51 +07:00

fix: introduced forwardRef (#185)

This commit is contained in:
Priscila Oliveira
2019-10-12 09:55:37 +02:00
committed by Juan Picado @jotadeveloper
parent af8ed8b3e3
commit 7548c89401
12 changed files with 60 additions and 22 deletions

View File

@@ -1,13 +1,11 @@
import styled from 'react-emotion';
import DialogTitle from '@material-ui/core/DialogTitle';
import colors from '../../utils/styles/colors';
import { fontSize } from '../../utils/styles/sizes';
import DialogTitle from '../../muiComponents/DialogTitle';
export const Title = styled(DialogTitle)({
'&&': {
backgroundColor: colors.primary,
color: colors.white,
fontSize: fontSize.lg,
},
backgroundColor: colors.primary,
color: colors.white,
fontSize: fontSize.lg,
});