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
/
cardContent.js
18 lines
(14 loc)
•
310 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
React
from
'react'
import
{styled}
from
'frontity'
;
const
cardContent
= (
{children}
) => {
return
(
<
ContentCss
>
{children}
</
ContentCss
>
) }
const
ContentCss
= styled.
div
` margin:0 1.5rem; padding-bottom: 1.5rem; `
;
export
default
cardContent