forked from sombochea/verdaccio-ui
a8deeb9b9d
* refactor: introduced forwardref * refacttor: updated ref's * fix: fixed func's name * fix: fixed snapshots * fix: updated snap
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
import styled from 'react-emotion';
|
|
|
|
import { fontWeight } from '../../utils/styles/sizes';
|
|
import ListItem from '../../muiComponents/ListItem';
|
|
import Text from '../../muiComponents/Text';
|
|
|
|
export const StyledText = styled(Text)({
|
|
fontWeight: fontWeight.bold,
|
|
textTransform: 'capitalize',
|
|
});
|
|
|
|
export const EngineListItem = styled(ListItem)({
|
|
paddingLeft: 0,
|
|
});
|