Files
dc-observatio/services/pcp-tgu-ops-ui/src/features/tgu-planning/TguLegend.tsx
T
Дмитрий Соловьев 9fca4d4051 pcp-tgu интерфейс
2026-05-29 16:09:36 +03:00

16 lines
552 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { STATUS_STYLES } from "./tguStatus";
export function TguLegend() {
return (
<div className="tgu-legend" aria-label="Легенда статусов">
{STATUS_STYLES.map((item) => (
<span className="tgu-legend__item" key={item.label}>
<span className={`tgu-legend__swatch ${item.className}`} />
{item.label}
</span>
))}
<span className="tgu-legend__note">Стрелки показывают следующий план того же КА по времени.</span>
</div>
);
}