import React from 'react' import type { Flashcard } from '@/lib/services/flashcards' interface FlashcardActionsProps { flashcard: Flashcard isEditing: boolean onToggleFavorite: () => void onToggleEdit: () => void onDelete: () => void className?: string } export const FlashcardActions: React.FC = ({ flashcard, isEditing, onToggleFavorite, onToggleEdit, onDelete, className = '' }) => { return (
) }