UNPKG
codenawis-theme
Version:
latest (1.1.0)
1.4.3
1.1.0
A frontity theme by @mymakarim @codenawis
frontity.org
mymakarim/frontity-codenawis
codenawis-theme
/
src
/
components
/
utitlity
/
avatar.js
16 lines
(13 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{ styled }
from
"frontity"
;
const
Avatar
= (
{src}
) => {
return
(
<
AvatarCss
src
=
{src}
/>
) }
const
AvatarCss
= styled.
img
` width: 65px !important; border-radius: 50%; margin-right: 10px; background-color: #eee; `
;
export
default
Avatar