import type { SVGAttributes } from 'react';
export default function AppLogoIcon(props: SVGAttributes<SVGElement>) {
return (
<img src="/assets/logo-clear.png" alt="Logo" className="w-8 h-8"/>
);
}