251dff646b355dd0ebd76a94c5721f10be10f0939337c07e1c78217816ffaad931e7a76ac8de8a3103da5e38fdf02fa657583701fb0957f8f99f724df3582f 667 B

123456789101112131415161718192021222324
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var vue = require('vue');
  4. var index = require('../../../icon/index.js');
  5. var iconsVue = require('@element-plus/icons-vue');
  6. var constants = require('../constants.js');
  7. const SortIcon = (props) => {
  8. const {
  9. sortOrder
  10. } = props;
  11. return vue.createVNode(index.ElIcon, {
  12. "size": 14,
  13. "class": props.class
  14. }, {
  15. default: () => [sortOrder === constants.SortOrder.ASC ? vue.createVNode(iconsVue.SortUp, null, null) : vue.createVNode(iconsVue.SortDown, null, null)]
  16. });
  17. };
  18. var SortIcon$1 = SortIcon;
  19. exports["default"] = SortIcon$1;
  20. //# sourceMappingURL=sort-icon.js.map