| 3 | import { ActionButton } from "./action-button"; |
| 4 | |
| 5 | interface ExportDropdownProps { |
| 6 | onCopy: () => void; |
| 7 | lastGenerated: Date; |
| 8 | onExportImage: () => void; |
| 9 | isOpen: boolean; |
| 10 | loading?: boolean; |
| 11 | } |
| 12 | |
| 13 | export function ExportDropdown({ |
| 14 | onCopy, |
nothing calls this directly
no outgoing calls
no test coverage detected