import React from 'react' import clsx from 'clsx' import styles from './highlight.module.css' export default function Highlight({ reversed, title, img, text, isDark }) { const left =
{img}
const right = (

{title}

{text}
) return (
{reversed ? ( <> {right} {left} ) : ( <> {left} {right} )}
) }