import classNames from 'classnames' import React from 'react' const infoLineClasses = 'flex flex-row justify-between flex-1 mb-1 text-xs text-white' interface SummaryLineProps { children: React.ReactNode className?: string contentClassName?: string label: string } export default function SummaryLine(props: SummaryLineProps) { return (
{props.label} {props.children}
) }