| 123456789101112131415161718192021222324 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.getMotion = getMotion;
- function getMotion(_ref) {
- let {
- prefixCls,
- animation,
- transitionName
- } = _ref;
- if (animation) {
- return {
- name: `${prefixCls}-${animation}`
- };
- }
- if (transitionName) {
- return {
- name: transitionName
- };
- }
- return {};
- }
|