import { Video } from 'lucide-react'; import { useBranding } from '../contexts/BrandingContext'; const sizes = { sm: { box: 'w-8 h-8', rounded: 'rounded-lg', icon: 16, text: 'text-lg' }, md: { box: 'w-9 h-9', rounded: 'rounded-lg', icon: 20, text: 'text-xl' }, lg: { box: 'w-10 h-10', rounded: 'rounded-xl', icon: 22, text: 'text-2xl' }, }; export default function BrandLogo({ size = 'md', className = '' }) { const { appName, hasLogo, logoUrl } = useBranding(); const s = sizes[size] || sizes.md; if (hasLogo && logoUrl) { return (