Skip to content

Commit 7259506

Browse files
shreeyash07tnagorra
authored andcommitted
Add swipe icon
1 parent e38a034 commit 7259506

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
4.2 KB
Loading

manager-dashboard/app/utils/common.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import twoTapIcon from '#resources/icons/2_Tap_Black.png';
3535
import threeTapIcon from '#resources/icons/3_Tap_Black.png';
3636
import tapIcon from '#resources/icons/tap_icon.png';
3737
import angularTapIcon from '#resources/icons/tap_icon_angular.png';
38+
import swipeIcon from '#resources/icons/swipeleft_icon_black.png';
3839

3940
export 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

111113
export 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

291298
export const iconMap = listToMap(

0 commit comments

Comments
 (0)