import { forwardRef, useMemo } from 'react';
import { IconProps } from './types';

export const IconMail24 = forwardRef<SVGSVGElement, IconProps>(
    ({ color = 'currentColor', title, ...props }, svgRef) => {
        const titleId = useMemo(
            () =>
                title
                    ? 'title-' + Math.random().toString(36).substr(2, 9)
                    : undefined,
            [title]
        );
        return (
            <svg
                xmlns="http://www.w3.org/2000/svg"
                width={24}
                height={24}
                fill="none"
                viewBox="0 0 24 24"
                aria-hidden={!title}
                ref={svgRef}
                aria-labelledby={titleId}
                {...props}
            >
                {title ? <title id={titleId}>{title}</title> : null}
                <path
                    fill={color}
                    d="M20.25 3A2.75 2.75 0 0 1 23 5.75v12.5A2.75 2.75 0 0 1 20.25 21H3.75A2.75 2.75 0 0 1 1 18.25V5.75A2.75 2.75 0 0 1 3.75 3zm-7.8 10.6a.75.75 0 0 1-.9 0l-2.337-1.752-6.682 6.681c.127.556.625.971 1.219.971h16.5a1.25 1.25 0 0 0 1.219-.97l-6.682-6.682zM2.5 16.44l5.501-5.502L2.5 6.812zm13.499-5.502L21.5 16.44V6.813zM3.75 4.5c-.445 0-.835.232-1.057.582L12 12.062l9.307-6.98A1.25 1.25 0 0 0 20.25 4.5z"
                />
            </svg>
        );
    }
);
