'use client' import React from 'react' interface StarRatingProps { stars: number // 0-3 total?: number // total stars earned (shown as badge) size?: 'sm' | 'md' | 'lg' animated?: boolean showLabel?: boolean } const sizeMap = { sm: 'text-lg', md: 'text-2xl', lg: 'text-4xl' } export function StarRating({ stars, total, size = 'md', animated = false, showLabel = false }: StarRatingProps) { return (