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
/
Logo.js
14 lines
(12 loc)
•
297 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
from
'react'
;
import
{css}
from
'frontity'
;
const
Logo
= (
{color}
) => {
return
(
<>
<
h2
>
<
b
css
=
{css
`
color:
${
color
}`}>
<
span
css
=
{css
`
color:
#
dc3545
`}>
CODE
</
span
>
NAWIS
</
b
>
</
h2
>
</>
) }
export
default
Logo