| 36 | |
| 37 | // ==============================|| DOCUMENTS ||============================== // |
| 38 | const getDocStoreActionButtonSx = (theme) => ({ |
| 39 | p: 0.5, |
| 40 | color: theme.palette.text.primary, |
| 41 | backgroundColor: theme.palette.mode === 'dark' ? theme.palette.background.default : theme.palette.background.paper, |
| 42 | border: `1px solid ${theme.palette.divider}`, |
| 43 | '&:hover': { |
| 44 | backgroundColor: theme.palette.action.hover, |
| 45 | borderColor: theme.palette.text.secondary |
| 46 | } |
| 47 | }) |
| 48 | |
| 49 | const Documents = () => { |
| 50 | const theme = useTheme() |