Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.renchi.ai/llms.txt

Use this file to discover all available pages before exploring further.

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} />
  );
}