import React from 'react'; import { Box } from './Box'; import { Surface } from './Surface'; import { Image } from './Image'; import { Icon } from './Icon'; import { LucideIcon } from 'lucide-react'; export interface LogoProps { src?: string; alt: string; size?: number | string; icon?: LucideIcon; rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full'; variant?: 'default' | 'dark' | 'muted' | 'glass'; border?: boolean; } export const Logo = ({ src, alt, size = 48, icon, rounded = 'md', variant = 'muted', border = true, }: LogoProps) => { const finalSize = typeof size === 'number' ? `${size}px` : size; return ( {src ? ( {alt} ) : icon ? ( 32 ? 6 : 4) : 6} intent="low" /> ) : null} ); };