1
0
forked from baron/baron-sso
Files
baron-sso/common/core/components/overview/OverviewAxisNotes.tsx

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