import React from "react" import Style from "./SummaryLabels.module.css" import classNames from "classnames" export default function SummaryLabels({ children, upperLabel, upperValue, lowerLabel, lowerValue, className, ...props }) { return (
{upperLabel}
{upperValue}
{lowerLabel}
{lowerValue}
) }