import React from "react"; import classNames from "classnames"; export default function Feature({ icon, title, description, highlight }) { return (
{icon}

{title}

{highlight ? ( <> {description.split(highlight).map((part, i, arr) => ( {part} {i < arr.length - 1 && ( {highlight} )} ))} ) : ( description )}

); }