forked from baron/baron-sso
20 lines
460 B
TypeScript
20 lines
460 B
TypeScript
import type { ReactNode } from "react";
|
|
|
|
export function OverviewMetric({
|
|
icon,
|
|
label,
|
|
value,
|
|
}: {
|
|
icon: ReactNode;
|
|
label: string;
|
|
value: string;
|
|
}) {
|
|
return (
|
|
<span className="inline-flex items-center gap-2 whitespace-nowrap text-sm">
|
|
<span className="text-muted-foreground">{icon}</span>
|
|
<span className="text-muted-foreground">{label}</span>
|
|
<span className="font-semibold tabular-nums">{value}</span>
|
|
</span>
|
|
);
|
|
}
|