2019-03-28 05:39:06 +07:00
|
|
|
import styled from 'react-emotion';
|
2019-10-08 03:19:18 +07:00
|
|
|
|
2019-08-09 03:58:15 +07:00
|
|
|
import { fontWeight } from '../../utils/styles/sizes';
|
2019-10-13 02:11:23 +07:00
|
|
|
import ListItem from '../../muiComponents/ListItem';
|
2019-10-13 02:41:42 +07:00
|
|
|
import Text from '../../muiComponents/Text';
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-10-13 02:41:42 +07:00
|
|
|
export const StyledText = styled(Text)({
|
|
|
|
fontWeight: fontWeight.bold,
|
|
|
|
textTransform: 'capitalize',
|
2019-07-15 16:57:32 +07:00
|
|
|
});
|
2019-03-28 05:39:06 +07:00
|
|
|
|
2019-07-15 16:57:32 +07:00
|
|
|
export const EngineListItem = styled(ListItem)({
|
2019-10-13 02:11:23 +07:00
|
|
|
paddingLeft: 0,
|
2019-07-15 16:57:32 +07:00
|
|
|
});
|