diff --git a/src/components/SummaryBox/SummaryBoxItem.tsx b/src/components/SummaryBox/SummaryBoxItem.tsx index ede01683d..64d8becf4 100644 --- a/src/components/SummaryBox/SummaryBoxItem.tsx +++ b/src/components/SummaryBox/SummaryBoxItem.tsx @@ -6,8 +6,8 @@ import CardBody from '../Card/CardBody'; interface SummaryBoxItemProps extends Omit { className?: string; - label?: string; - value?: React.ReactNode; + label?: string | React.ReactNode; + value?: string | React.ReactNode; reverse?: boolean; }