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