Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
thecybernanny-webapp
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asranov0003
thecybernanny-webapp
Commits
28ec5d33
Commit
28ec5d33
authored
Jul 23, 2025
by
asranov0003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add messengers constant
parent
ca6a7e36
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
0 deletions
+47
-0
messengers.tsx
src/constants/messengers.tsx
+47
-0
No files found.
src/constants/messengers.tsx
0 → 100644
View file @
28ec5d33
import
type
{
ReactNode
}
from
"react"
;
import
{
IoLogoFacebook
,
IoLogoInstagram
,
IoLogoVk
,
IoLogoWhatsapp
,
}
from
"react-icons/io5"
;
import
{
SiTelegram
,
SiViber
}
from
"react-icons/si"
;
export
interface
IMessenger
{
id
:
number
;
name
:
string
;
icon
:
ReactNode
;
}
export
const
MESSENGERS
:
IMessenger
[]
=
[
{
id
:
20
,
name
:
"Telegram"
,
icon
:
<
SiTelegram
className=
"messenger__icon"
/>,
},
{
id
:
7
,
name
:
"WhatsApp"
,
icon
:
<
IoLogoWhatsapp
className=
"messenger__icon"
/>,
},
{
id
:
6
,
name
:
"VK"
,
icon
:
<
IoLogoVk
className=
"messenger__icon"
/>,
},
{
id
:
22
,
name
:
"Instagram"
,
icon
:
<
IoLogoInstagram
className=
"messenger__icon"
/>,
},
{
id
:
10
,
name
:
"Facebook"
,
icon
:
<
IoLogoFacebook
className=
"messenger__icon"
/>,
},
{
id
:
8
,
name
:
"Viber"
,
icon
:
<
SiViber
className=
"messenger__icon"
/>,
},
];
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment