| 1234567891011121314151617181920 |
- import { createVNode } from 'vue';
- import { ElIcon } from '../../../icon/index.mjs';
- import { SortUp, SortDown } from '@element-plus/icons-vue';
- import { SortOrder } from '../constants.mjs';
- const SortIcon = (props) => {
- const {
- sortOrder
- } = props;
- return createVNode(ElIcon, {
- "size": 14,
- "class": props.class
- }, {
- default: () => [sortOrder === SortOrder.ASC ? createVNode(SortUp, null, null) : createVNode(SortDown, null, null)]
- });
- };
- var SortIcon$1 = SortIcon;
- export { SortIcon$1 as default };
- //# sourceMappingURL=sort-icon.mjs.map
|