import React from 'react'; const titleSize = 28; function Card(props) { const { full = true, title, titleSpace, overVisible, padding, withBorder = true, withBg = "rgba(6,36,109,0.80)" } = props; return (
{title &&
{title}
}
{React.Children.map(props.children, item => item)}
); } export default Card;