From 5627a4ccf3832eef0062b40b2ccd88c03747b37d Mon Sep 17 00:00:00 2001 From: Timo Van-Kissing Date: Thu, 29 Aug 2024 11:59:24 -0700 Subject: [PATCH] fix: Fix label type on SummaryBoxItem --- src/components/SummaryBox/SummaryBoxItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/SummaryBox/SummaryBoxItem.tsx b/src/components/SummaryBox/SummaryBoxItem.tsx index ede01683d..1e17bb2fe 100644 --- a/src/components/SummaryBox/SummaryBoxItem.tsx +++ b/src/components/SummaryBox/SummaryBoxItem.tsx @@ -6,7 +6,7 @@ import CardBody from '../Card/CardBody'; interface SummaryBoxItemProps extends Omit { className?: string; - label?: string; + label?: React.ReactNode; value?: React.ReactNode; reverse?: boolean; }