Files
OSGAccountServer/admin-web/src/components/chart-toolbar.tsx
T
Rocky 74c3fcd45f
CI / verify (push) Has been cancelled
CI / publish (push) Has been cancelled
Add admin dashboard filtering and sorting
Provide stable server-side list queries and focused chart controls so operators can inspect large datasets without misleading partial-page ordering.
2026-08-20 18:05:49 +08:00

19 lines
331 B
TypeScript

import type { ReactNode } from "react";
export function ChartToolbar({
children,
label,
}: {
children: ReactNode;
label: string;
}) {
return (
<div
className="flex flex-wrap items-end gap-3 border-b border-border bg-surface-muted/25 px-5 py-4"
aria-label={label}
>
{children}
</div>
);
}