import React from "react" import Style from "./Summary.module.css" import classNames from "classnames" import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" export default function Summary( { title, subtitle, upperLabel, upperValue, lowerLabel, lowerValue, buttons, className, ...props }, ) { return (
{title}
{subtitle}
{upperLabel}
{upperValue}
{lowerLabel}
{lowerValue}
{buttons}
) }