import React from 'react'; import { cn } from '../../utils/classNames'; import type { ApprovalSummaryItem } from '../../utils/approvalViewModels'; const toneDot: Record, string> = { neutral: 'bg-app-border-strong', brand: 'bg-brand', warning: 'bg-warning', danger: 'bg-danger', success: 'bg-success', }; /** * A compact, single-bordered list of approval items (one row each) — replaces the * stack of individually-bordered panels so the modals read cleanly. */ const ApprovalItemList: React.FC<{ items: ApprovalSummaryItem[] }> = ({ items }) => ( ); export default ApprovalItemList;