import React from 'react'; interface AppLogoProps { className?: string; } /** * NetMesh app icon — rounded tile with primary-color background and the elf SVG. * This replaces the old hand-drawn netcatty logo so every surface (vault sidebar, * tray icon, lock overlay, traffic diagram, etc.) renders the same elf + theme tile. */ export const AppLogo: React.FC = ({ className }) => (
); export default AppLogo;