@actinc/dls
Version:
Design Language System (DLS) for ACT & Encoura front-end projects.
30 lines • 1.02 kB
JavaScript
/**
* Copyright (c) ACT, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import { grey } from '@mui/material/colors';
import TablePagination, { tablePaginationClasses, } from '@mui/material/TablePagination';
import { styled } from "../../helpers/styled";
export var StyledEmptyStateContainer = styled('div')(function (_a) {
var theme = _a.theme;
return ({
paddingBottom: theme.spacing(1),
paddingLeft: theme.spacing(1),
paddingRight: theme.spacing(1),
paddingTop: theme.spacing(2.5),
width: '100%',
});
});
export var StyledTablePagination = styled(TablePagination)(function (_a) {
var _b;
var theme = _a.theme;
return (_b = {},
_b["&.".concat(tablePaginationClasses.root)] = {
backgroundColor: grey[50],
fontSize: theme.typography.body2.fontSize,
},
_b);
});
//# sourceMappingURL=styles.js.map