UNPKG

codenawis-theme

Version:

A frontity theme by @mymakarim @codenawis

18 lines (14 loc) 310 B
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