import { Spinner } from "@components/UI/Spinner.tsx"; import { cn } from "@core/utils/cn.ts"; import type { ActionItem } from "@stores/headerStore.tsx"; export default function HeaderActions({ actions }: { actions: ActionItem[] }) { if (!actions?.length) { return null; } return (
{actions.map((action) => ( ))}
); }