mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
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 (
|
|
<div className={classNames(Style.SummaryLabels, className)} {...props}>
|
|
<div className={classNames(Style.Label, Style.Upper)}>
|
|
{upperLabel}
|
|
</div>
|
|
<div className={classNames(Style.Value, Style.Upper)}>
|
|
{upperValue}
|
|
</div>
|
|
<div className={classNames(Style.Label, Style.Lower)}>
|
|
{lowerLabel}
|
|
</div>
|
|
<div className={classNames(Style.Value, Style.Lower)}>
|
|
{lowerValue}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|