import { ThumbsUp } from 'lucide-react'; interface VoteButtonProps { optionId: string; votes: number; onVote: (optionId: string) => void; disabled?: boolean; } export function VoteButton({ optionId, votes, onVote, disabled = false }: VoteButtonProps) { return ( ); }