Skip to main content
MetricCard component

Props

title
string
required
title
value
string
required
value
change
string
required
change
changeType
'positive' | 'negative' | 'neutral'
required
changeType
subtitle
string
subtitle

Usage

import { MetricCard } from '@/components/MetricCard';

export default function Example() {
  return (
    <MetricCard title={title} value={value} change={change} changeType={changeType} />
  );
}