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
/
Hr.js
20 lines
(16 loc)
•
315 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import
{ styled }
from
"frontity"
;
const
Hr
= (
{children}
) => {
return
(
<
HrCss
>
{children}
</
HrCss
>
) }
const
HrCss
= styled.
hr
` margin-top: 1rem; margin-bottom: 1rem; border: 0; border-top: 1px solid #333; width: 100%; `
;
export
default
Hr