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 = {
71
71
'IconUp' ,
72
72
'IconUpdate' ,
73
73
'IconUpO' ,
74
- 'IconUpWard'
74
+ 'IconUpWard' ,
75
+ 'IconTriangleUp'
75
76
] ,
76
77
Downward : [
77
78
'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'
2
2
3
3
export default {
4
4
validConfig : {
@@ -11,7 +11,7 @@ export default {
11
11
icons : {
12
12
// saas不需要默认排序图标
13
13
sortDefault : null ,
14
- sortAsc : iconChevronUp ( ) ,
15
- sortDesc : iconChevronDown ( )
14
+ sortAsc : IconTriangleUp ( ) ,
15
+ sortDesc : IconTriangleDown ( )
16
16
}
17
17
}
Original file line number Diff line number Diff line change 688
688
@apply ~ ' h-3.5' ;
689
689
line-height : 14px ;
690
690
@apply block ;
691
- @apply text- xs ;
691
+ @apply text- md ;
692
692
@apply fill- color - icon- secondary;
693
693
transform : scale (0.8 );
694
694
@apply cursor- pointer;
Original file line number Diff line number Diff line change @@ -380,6 +380,7 @@ import IconText from './src/text'
380
380
import IconTime from './src/time'
381
381
import IconTotal from './src/total'
382
382
import IconTriangleDown from './src/triangle-down'
383
+ import IconTriangleUp from './src/triangle-up'
383
384
import IconUndelete from './src/undelete'
384
385
import IconUnderline from './src/underline'
385
386
import IconUndo from './src/undo'
@@ -1455,6 +1456,8 @@ export {
1455
1456
IconTotal as iconTotal ,
1456
1457
IconTriangleDown ,
1457
1458
IconTriangleDown as iconTriangleDown ,
1459
+ IconTriangleUp ,
1460
+ IconTriangleUp as iconTriangleUp ,
1458
1461
IconUndelete ,
1459
1462
IconUndelete as iconUndelete ,
1460
1463
IconUnderline ,
@@ -2063,6 +2066,7 @@ export default {
2063
2066
IconTime,
2064
2067
IconTotal,
2065
2068
IconTriangleDown,
2069
+ IconTriangleUp,
2066
2070
IconUndelete,
2067
2071
IconUnderline,
2068
2072
IconUndo,
Original file line number Diff line number Diff line change @@ -380,6 +380,7 @@ import IconText from './src/text'
380
380
import IconTime from './src/time'
381
381
import IconTotal from './src/total'
382
382
import IconTriangleDown from './src/triangle-down'
383
+ import IconTriangleUp from './src/triangle-up'
383
384
import IconUndelete from './src/undelete'
384
385
import IconUnderline from './src/underline'
385
386
import IconUndo from './src/undo'
@@ -1455,6 +1456,8 @@ export {
1455
1456
IconTotal as iconTotal ,
1456
1457
IconTriangleDown ,
1457
1458
IconTriangleDown as iconTriangleDown ,
1459
+ IconTriangleUp ,
1460
+ IconTriangleUp as iconTriangleUp ,
1458
1461
IconUndelete ,
1459
1462
IconUndelete as iconUndelete ,
1460
1463
IconUnderline ,
@@ -2063,6 +2066,7 @@ export default {
2063
2066
IconTime,
2064
2067
IconTotal,
2065
2068
IconTriangleDown,
2069
+ IconTriangleUp,
2066
2070
IconUndelete,
2067
2071
IconUnderline,
2068
2072
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