import React from 'react'; import { Button } from './ui/button'; import { X, BookOpen } from 'lucide-react'; interface ReviewBannerProps { onReview: () => void; onDismiss: () => void; } export function ReviewBanner({ onReview, onDismiss }: ReviewBannerProps) { return (

Time to review! 📚

You have topics that need your attention. Review them to strengthen your learning.

); }