File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ import twoTapIcon from '#resources/icons/2_Tap_Black.png';
3535import threeTapIcon from '#resources/icons/3_Tap_Black.png' ;
3636import tapIcon from '#resources/icons/tap_icon.png' ;
3737import angularTapIcon from '#resources/icons/tap_icon_angular.png' ;
38+ import swipeIcon from '#resources/icons/swipeleft_icon_black.png' ;
3839
3940export function valueSelector < T > ( item : { value : T } ) {
4041 return item . value ;
@@ -106,7 +107,8 @@ export type IconKey = 'addOutline'
106107 | 'tap'
107108 | 'tap-1'
108109 | 'tap-2'
109- | 'tap-3' ;
110+ | 'tap-3'
111+ | 'swipe-left' ;
110112
111113export interface IconItem {
112114 key : IconKey ;
@@ -286,6 +288,11 @@ export const iconList: IconItem[] = [
286288 label : '3-Tap' ,
287289 component : getPngIcon ( threeTapIcon , 'three tap' ) ,
288290 } ,
291+ {
292+ key : 'swipe-left' ,
293+ label : 'Swipe Left' ,
294+ component : getPngIcon ( swipeIcon , 'swipe left' ) ,
295+ } ,
289296] ;
290297
291298export const iconMap = listToMap (
You can’t perform that action at this time.
0 commit comments