import { collectionDisplayName } from '../lib/collection-vocabulary.js'; import { Modal } from './ui'; export default function CollectionDeleteModal({ isOpen, collection, onClose, onConfirm, }) { if (!collection) return null; return (

Are you sure you want to delete "{collectionDisplayName(collection)}"? This action cannot be undone and will permanently remove all cards and data associated with this list.

); }