UNPKG
reflex-motion-test
Version:
latest (1.0.0)
1.0.0
Simple, elegant animations library
github.com/gracesnoh/reflex-motion
gracesnoh/reflex-motion
reflex-motion-test
/
animations
/
NotificationBell
/
Badge.js
15 lines
(13 loc)
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
styled
from
'styled-components'
;
const
Badge
=
styled.div`
position:
absolute;
opacity:
0
;
top:
-1.
25px;
right:
-2px;
width:
14px;
height:
14px;
border-radius:
12px;
border:
3px
solid
#ffffff;
background-color:
#ee4444;
`;
export
default
Badge;