import { MessageCircle } from 'lucide-react'; import { motion } from 'framer-motion'; import { useFeedbackStore } from './feedbackStore'; import { Button } from '../ui'; interface FeedbackButtonProps { onClick: () => void; showCount?: boolean; } export function FeedbackButton({ onClick, showCount = true }: FeedbackButtonProps) { const feedbackItems = useFeedbackStore((state) => state.feedbackItems); const pendingCount = feedbackItems.filter((f) => f.status === 'pending' || f.status === 'submitted').length; return ( ); }