forked from baron/baron-sso
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
export function OverviewAxisNotes({
|
|
xAxisLabel,
|
|
yAxisLabel,
|
|
}: {
|
|
xAxisLabel: string;
|
|
yAxisLabel: string;
|
|
}) {
|
|
return (
|
|
<div className="flex flex-wrap gap-x-4 gap-y-1 text-xs text-muted-foreground">
|
|
<span>{xAxisLabel}</span>
|
|
<span>{yAxisLabel}</span>
|
|
</div>
|
|
);
|
|
}
|