import type { CSSObject } from '@ant-design/cssinjs'; import type { GenerateStyle } from '../../theme'; import type { TableToken } from './index'; // ========================= Placeholder ========================== const genEmptyStyle: GenerateStyle = token => { const { componentCls } = token; return { [`${componentCls}-wrapper`]: { [`${componentCls}-tbody > tr${componentCls}-placeholder`]: { textAlign: 'center', color: token.colorTextDisabled, '&:hover > td': { background: token.colorBgContainer, }, }, }, }; }; export default genEmptyStyle;