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
/
Image.js
11 lines
(8 loc)
•
210 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
styled
from
'styled-components'
;
import
bellImg
from
'./bell-solid.svg'
;
const
Image
= styled.
img
.
attrs
({
src
:
props
=>
props.
src
|| bellImg, })
` transform-origin: 50% 0; `
;
export
default
Image
;