mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 06:04:28 +07:00
22 lines
467 B
TypeScript
22 lines
467 B
TypeScript
import styled from 'react-emotion';
|
|
import { default as MuiFab } from '@material-ui/core/Fab';
|
|
import ListItem from '@material-ui/core/ListItem';
|
|
|
|
import colors from '../../utils/styles/colors';
|
|
|
|
export const ActionListItem = styled(ListItem)({
|
|
'&&': {
|
|
paddingTop: 0,
|
|
paddingLeft: 0,
|
|
paddingRight: 0,
|
|
},
|
|
});
|
|
|
|
export const Fab = styled(MuiFab)({
|
|
'&&': {
|
|
backgroundColor: colors.primary,
|
|
color: colors.white,
|
|
marginRight: '10px',
|
|
},
|
|
});
|