const Title = styled.div` font-size: 14px; font-weight: 500; margin-bottom: 10px; `; const Content = styled.div` padding: 18px 14px; background: rgba(0, 0, 0, 0.26); border: 1px solid #42307D; border-radius: 10px; `; return ( <div> <Title>{props.title}</Title> <Content>{props.children}</Content> </div> );