diff --git a/src/assets/svg/mp_info_lt_placeholder.svg b/src/assets/svg/mp_info_lt_placeholder.svg
new file mode 100644
index 000000000..3ab544d62
--- /dev/null
+++ b/src/assets/svg/mp_info_lt_placeholder.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/components/icons/index.ts b/src/components/icons/index.ts
index 7e7547c35..8920c5f01 100644
--- a/src/components/icons/index.ts
+++ b/src/components/icons/index.ts
@@ -65,6 +65,7 @@ import FilterIcon from 'src/assets/svg/mp_act_lt_filter.svg?react'
import ActiveIcon from 'src/assets/svg/mp_info_lt_active.svg?react'
import LinkIcon from 'src/assets/svg/mp_info_link.svg?react'
import InfoIcon from 'src/assets/svg/mp_info_lt_info.svg?react'
+import Placeholder from 'src/assets/svg/mp_info_lt_placeholder.svg?react'
export {
AddIcon,
@@ -134,4 +135,5 @@ export {
LinkIcon,
ActiveIcon,
InfoIcon,
+ Placeholder,
}
diff --git a/src/constants/Icons.ts b/src/constants/Icons.ts
index b9c2a1271..86c815548 100644
--- a/src/constants/Icons.ts
+++ b/src/constants/Icons.ts
@@ -68,6 +68,7 @@ import {
ActiveIcon,
LinkIcon,
InfoIcon,
+ Placeholder,
} from 'src/components/icons'
export const Icons: Record = {
@@ -430,4 +431,8 @@ export const Icons: Record = {
light: InfoIcon,
default: 'light',
},
+ placeholder: {
+ light: Placeholder,
+ default: 'light',
+ },
} as const
diff --git a/src/types/icons.ts b/src/types/icons.ts
index c1b54d57f..2879f17f8 100644
--- a/src/types/icons.ts
+++ b/src/types/icons.ts
@@ -99,3 +99,5 @@ export type IconNames =
| 'active'
| 'link'
| 'info'
+ | 'placeholder'
+