diff --git a/src/assets/svg/mp_act_lt_more-actions.svg b/src/assets/svg/mp_act_lt_more-actions.svg
new file mode 100644
index 000000000..0ef370037
--- /dev/null
+++ b/src/assets/svg/mp_act_lt_more-actions.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts
index dee65a69e..46615b66c 100644
--- a/src/components/icons/index.ts
+++ b/src/components/icons/index.ts
@@ -84,6 +84,7 @@ import ScheduledReport from 'src/assets/svg/mp_pm_lt_scheduled-report.svg?react'
import FullScreen from 'src/assets/svg/mp_act_lt_full-screen.svg?react'
import Edit from 'src/assets/svg/mp_act_lt_edit.svg?react'
import Copy from 'src/assets/svg/mp_act_lt_copy.svg?react'
+import MoreActions from 'src/assets/svg/mp_act_lt_more-actions.svg?react'
export {
AddIcon,
@@ -172,4 +173,5 @@ export {
FullScreen,
Edit,
Copy,
+ MoreActions,
}
diff --git a/src/constants/Icons.ts b/src/constants/Icons.ts
index 72bcee6f5..0c41eaf6f 100644
--- a/src/constants/Icons.ts
+++ b/src/constants/Icons.ts
@@ -87,6 +87,7 @@ import {
FullScreen,
Edit,
Copy,
+ MoreActions,
} from 'src/components/icons'
export const Icons: Record = {
@@ -525,4 +526,8 @@ export const Icons: Record = {
light: Copy,
default: 'light',
},
+ moreActions: {
+ light: MoreActions,
+ default: 'light',
+ },
} as const
diff --git a/src/types/icons.ts b/src/types/icons.ts
index 04848fb05..ad79b84f5 100644
--- a/src/types/icons.ts
+++ b/src/types/icons.ts
@@ -118,3 +118,4 @@ export type IconNames =
| 'fullScreen'
| 'edit'
| 'copy'
+ | 'moreActions'