import React from "react"; const darkComponentTextAlignStyles = { display: 'flex', flexDirection: 'column', textAlign: 'center' } const darkComponent = props => { const { topText, fontSize, bottomText, image } = props return ( <>
{topText && (

{topText}

)} {bottomText && (

{bottomText}

)}
{image && dark component} ); }; export default darkComponent;