Skip to content

Commit

Permalink
Fix label and value types on SummaryBoxItem
Browse files Browse the repository at this point in the history
  • Loading branch information
tkissingappfolio committed Aug 29, 2024
1 parent 38981aa commit 2eeaa52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SummaryBox/SummaryBoxItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import CardBody from '../Card/CardBody';

interface SummaryBoxItemProps extends Omit<CardProps, 'color' | 'outline' | 'className'> {
className?: string;
label?: string;
value?: React.ReactNode;
label?: string | React.ReactNode;
value?: string | React.ReactNode;
reverse?: boolean;
}

Expand Down

0 comments on commit 2eeaa52

Please sign in to comment.