mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-23 23:27:56 +01:00
19 lines
421 B
TypeScript
19 lines
421 B
TypeScript
|
import { MenuItem, TableCell } from '@material-ui/core';
|
||
|
import { withStyles } from '@material-ui/core/styles';
|
||
|
|
||
|
export const StyledTableCell = withStyles({
|
||
|
root: {
|
||
|
color: 'black',
|
||
|
padding: '0px',
|
||
|
cursor: 'pointer'
|
||
|
}
|
||
|
})(TableCell);
|
||
|
|
||
|
export const StyledMenuItem = withStyles({
|
||
|
root: {
|
||
|
width: '300px',
|
||
|
padding: '10px 20px',
|
||
|
marging: '0px 20px'
|
||
|
}
|
||
|
})(MenuItem)
|