| 4 | import { IoClose } from 'react-icons/io5' |
| 5 | |
| 6 | interface CardHeaderProps { |
| 7 | side: 'front' | 'back' |
| 8 | onFlip: () => void |
| 9 | onSave: () => void |
| 10 | } |
| 11 | |
| 12 | function CardHeader({ side, onFlip, onSave }: CardHeaderProps) { |
| 13 | const { t } = useTranslation() |
nothing calls this directly
no outgoing calls
no test coverage detected