empty.js 455 B

123456789101112131415161718
  1. // ========================= Placeholder ==========================
  2. const genEmptyStyle = token => {
  3. const {
  4. componentCls
  5. } = token;
  6. return {
  7. [`${componentCls}-wrapper`]: {
  8. [`${componentCls}-tbody > tr${componentCls}-placeholder`]: {
  9. textAlign: 'center',
  10. color: token.colorTextDisabled,
  11. '&:hover > td': {
  12. background: token.colorBgContainer
  13. }
  14. }
  15. }
  16. };
  17. };
  18. export default genEmptyStyle;