import { cn } from '@/lib/utils'
export function BrandLogo({ className }: { className?: string }) {
  return <svg viewBox="0 0 32 32" role="img" aria-label="Central de Tarefas IA" className={cn('size-8', className)}><rect width="32" height="32" rx="8" fill="#1e3a8a"/><path d="m16 7 9 5-9 5-9-5 9-5Zm-9 10 9 5 9-5M7 22l9 5 9-5" fill="none" stroke="white" strokeWidth="2.2" strokeLinecap="round" strokeLinejoin="round"/></svg>
}
