import React from "react"; import BackgroundImage from "./BackgroundImage"; import "./Section.scss"; const Section = ({ color, size, backgroundImage, backgroundImageOpacity, children, // Passed to section element ...otherProps }) => (
{backgroundImage && ( )} {children}
); export default Section;