import { collectionDisplayName } from '../lib/collection-vocabulary.js'; export default function CollectionDeleteModal({ isOpen, collection, onClose, onConfirm, }) { if (!isOpen || !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.