import React from 'react'; type Props = { className?: string | undefined; size?: number; title?: string; }; /** Логотип приложения (SVG из брендинга). */ export function AppLogo({ className, size = 26, title }: Props) { return ( ); }