import * as React from 'react';

export default function AppLogoIcon(props: React.SVGProps<SVGSVGElement>) {
    return (
        <svg viewBox="0 0 24 24" fill="none" aria-hidden="true" {...props}>
            <path
                d="M12 2.75 19 5.5v5.65c0 4.35-2.73 8.23-7 10.1-4.27-1.87-7-5.75-7-10.1V5.5L12 2.75Z"
                stroke="currentColor"
                strokeWidth="1.8"
                strokeLinejoin="round"
            />
            <path
                d="m8.7 12 2.05 2.05 4.55-4.55"
                stroke="currentColor"
                strokeWidth="1.8"
                strokeLinecap="round"
                strokeLinejoin="round"
            />
        </svg>
    );
}
