diff --git a/src/components/InfoIcon/InfoIcon.tsx b/src/components/InfoIcon/InfoIcon.tsx
new file mode 100644
index 00000000..3433ad37
--- /dev/null
+++ b/src/components/InfoIcon/InfoIcon.tsx
@@ -0,0 +1,5 @@
+import { Icon } from 'features/Icon'
+
+export const InfoIcon = () => (
+
+)
diff --git a/src/config/lexics/userAccount.tsx b/src/config/lexics/userAccount.tsx
index 209248c6..e1705ffe 100644
--- a/src/config/lexics/userAccount.tsx
+++ b/src/config/lexics/userAccount.tsx
@@ -35,6 +35,7 @@ export const userAccountLexics = {
subscriptions: 13016,
subscriptions_active: 15061,
subscriptions_removed: 15062,
+ unsubscribe_prompt: 18198,
user_account: 12928,
...navigations,
...publicLexics,
diff --git a/src/features/UserAccount/components/UnsubscribePrompt/index.tsx b/src/features/UserAccount/components/UnsubscribePrompt/index.tsx
new file mode 100644
index 00000000..8c0e4379
--- /dev/null
+++ b/src/features/UserAccount/components/UnsubscribePrompt/index.tsx
@@ -0,0 +1,32 @@
+import { InfoIcon } from 'components/InfoIcon/InfoIcon'
+import styled, { css } from 'styled-components'
+import { T9n } from 'features/T9n'
+import { isMobileDevice } from 'config/userAgent'
+
+const Wrapper = styled.div`
+ display: flex;
+ color: rgba(255, 255, 255, 0.8);
+ font-size: 16px;
+ max-width: 340px;
+ margin-top: 50px;
+
+ ${isMobileDevice
+ ? css`
+ margin-top: 25px;
+ font-size: 12px;
+ `
+ : ''}
+`
+
+const WrapperIcon = styled.div`
+ margin-right: 10px;
+`
+
+export const UnsubscribePrompt = () => (
+
+
+
+
+
+
+)
diff --git a/src/features/UserAccount/index.tsx b/src/features/UserAccount/index.tsx
index 396df753..3b410596 100644
--- a/src/features/UserAccount/index.tsx
+++ b/src/features/UserAccount/index.tsx
@@ -16,6 +16,7 @@ import { PageSubscriptions } from './components/PageSubscriptions'
import { PagePaymentsHistory } from './components/PagePaymentsHistory'
import { ScoreSwitch } from './components/ScoreSwitch'
import { LogoutButton } from './components/LogoutButton'
+import { UnsubscribePrompt } from './components/UnsubscribePrompt'
import {
Aside,
Body,
@@ -53,6 +54,7 @@ const UserAccount = () => {
+
diff --git a/src/libs/index.ts b/src/libs/index.ts
index 98a6efb1..9dd1d574 100644
--- a/src/libs/index.ts
+++ b/src/libs/index.ts
@@ -9,3 +9,4 @@ export { Volleyball } from './objects/Volleyball'
export { Star } from './objects/Star'
export { Dollar } from './objects/Dollar'
export { Close } from './objects/Close'
+export { Info } from './objects/Info'
diff --git a/src/libs/objects/Info.tsx b/src/libs/objects/Info.tsx
new file mode 100644
index 00000000..3570f1b2
--- /dev/null
+++ b/src/libs/objects/Info.tsx
@@ -0,0 +1,14 @@
+export const Info = () => (
+
+)