rtl.js 367 B

123456789101112131415161718
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. // =========================== Motion ===========================
  7. const genRtlStyle = token => {
  8. const {
  9. componentCls
  10. } = token;
  11. return {
  12. [`${componentCls}-rtl`]: {
  13. direction: 'rtl'
  14. }
  15. };
  16. };
  17. var _default = exports.default = genRtlStyle;