import type { ImgHTMLAttributes } from 'react';

export default function AppLogoIcon({
    className,
    alt = 'Monily',
    ...props
}: ImgHTMLAttributes<HTMLImageElement>) {
    return (
        <img
            src="/branding/monily-mark.png"
            alt={alt}
            className={className}
            {...props}
        />
    );
}
