Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
beasy-mobile
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
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
G
beasy-mobile
Commits
1479d225
Commit
1479d225
authored
Apr 25, 2024
by
G
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Notification icon component
parent
c36f82a6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
NotificationIconButton.tsx
src/components/NotificationIconButton.tsx
+34
-0
No files found.
src/components/NotificationIconButton.tsx
0 → 100644
View file @
1479d225
import
Box
from
"@components/bases/Box"
;
import
{
Ionicons
}
from
"@expo/vector-icons"
;
const
NotificationIconButton
=
()
=>
{
return
(
<
Box
width=
{
40
}
height=
{
40
}
position=
{
"relative"
}
>
<
Box
backgroundColor=
{
"white"
}
opacity=
{
0.5
}
p=
{
"s"
}
borderRadius=
{
50
}
style=
{
{
height
:
"100%"
,
width
:
"100%"
,
position
:
"absolute"
}
}
/>
<
Box
style=
{
{
height
:
"100%"
,
width
:
"100%"
,
borderRadius
:
50
,
display
:
"flex"
,
alignItems
:
"center"
,
justifyContent
:
"center"
,
}
}
>
<
Ionicons
name=
"notifications-outline"
size=
{
24
}
color=
"white"
style=
{
{
opacity
:
1
}
}
/>
</
Box
>
</
Box
>
);
};
export
default
NotificationIconButton
;
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