import { h } from 'preact' interface MetricCardProps { readonly title: string readonly value: string readonly valueColor?: string readonly description?: string } export default function MetricCard({ title, value, valueColor, description }: MetricCardProps) { return (