File tree Expand file tree Collapse file tree 10 files changed +52
-24
lines changed
examples/sites/demos/pc/app/icon Expand file tree Collapse file tree 10 files changed +52
-24
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,8 @@ export const iconGroups = {
7171 'IconUp' ,
7272 'IconUpdate' ,
7373 'IconUpO' ,
74- 'IconUpWard'
74+ 'IconUpWard' ,
75+ 'IconTriangleUp'
7576 ] ,
7677 Downward : [
7778 'IconArrowBottom' ,
Original file line number Diff line number Diff line change 1- import { iconChevronUp , iconChevronDown } from '@opentiny/vue-icon'
1+ import { IconTriangleDown , IconTriangleUp } from '@opentiny/vue-icon'
22
33export default {
44 validConfig : {
@@ -11,7 +11,7 @@ export default {
1111 icons : {
1212 // saas不需要默认排序图标
1313 sortDefault : null ,
14- sortAsc : iconChevronUp ( ) ,
15- sortDesc : iconChevronDown ( )
14+ sortAsc : IconTriangleUp ( ) ,
15+ sortDesc : IconTriangleDown ( )
1616 }
1717}
Original file line number Diff line number Diff line change 688688 @apply ~ ' h-3.5' ;
689689 line-height : 14px ;
690690 @apply block ;
691- @apply text- xs ;
691+ @apply text- md ;
692692 @apply fill- color - icon- secondary;
693693 transform : scale (0.8 );
694694 @apply cursor- pointer;
Original file line number Diff line number Diff line change @@ -380,6 +380,7 @@ import IconText from './src/text'
380380import IconTime from './src/time'
381381import IconTotal from './src/total'
382382import IconTriangleDown from './src/triangle-down'
383+ import IconTriangleUp from './src/triangle-up'
383384import IconUndelete from './src/undelete'
384385import IconUnderline from './src/underline'
385386import IconUndo from './src/undo'
@@ -1455,6 +1456,8 @@ export {
14551456 IconTotal as iconTotal ,
14561457 IconTriangleDown ,
14571458 IconTriangleDown as iconTriangleDown ,
1459+ IconTriangleUp ,
1460+ IconTriangleUp as iconTriangleUp ,
14581461 IconUndelete ,
14591462 IconUndelete as iconUndelete ,
14601463 IconUnderline ,
@@ -2063,6 +2066,7 @@ export default {
20632066 IconTime,
20642067 IconTotal,
20652068 IconTriangleDown,
2069+ IconTriangleUp,
20662070 IconUndelete,
20672071 IconUnderline,
20682072 IconUndo,
Original file line number Diff line number Diff line change @@ -380,6 +380,7 @@ import IconText from './src/text'
380380import IconTime from './src/time'
381381import IconTotal from './src/total'
382382import IconTriangleDown from './src/triangle-down'
383+ import IconTriangleUp from './src/triangle-up'
383384import IconUndelete from './src/undelete'
384385import IconUnderline from './src/underline'
385386import IconUndo from './src/undo'
@@ -1455,6 +1456,8 @@ export {
14551456 IconTotal as iconTotal ,
14561457 IconTriangleDown ,
14571458 IconTriangleDown as iconTriangleDown ,
1459+ IconTriangleUp ,
1460+ IconTriangleUp as iconTriangleUp ,
14581461 IconUndelete ,
14591462 IconUndelete as iconUndelete ,
14601463 IconUnderline ,
@@ -2063,6 +2066,7 @@ export default {
20632066 IconTime,
20642067 IconTotal,
20652068 IconTriangleDown,
2069+ IconTriangleUp,
20662070 IconUndelete,
20672071 IconUnderline,
20682072 IconUndo,
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2022 - present TinyVue Authors.
3+ * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd.
4+ *
5+ * Use of this source code is governed by an MIT-style license.
6+ *
7+ * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
8+ * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
9+ * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
10+ *
11+ */
12+ import { svg } from '@opentiny/vue-common'
13+ import TriangleUp from '@opentiny/vue-theme/svgs/triangle-up.svg'
14+
15+ export default ( ) => svg ( { name : 'IconTriangleUp' , component : TriangleUp } ) ( )
You can’t perform that action at this time.
0 commit comments