export const FullWidthCol = ({ children, ...rest }) => (
  <Col lg={12} md={12} sm={12} {...rest}>
    {children}
  </Col>
);