import React, { FC } from 'react';

import { WfoIconProps } from './WfoIconProps';

export const WfoContactEnvelopeFill: FC<WfoIconProps> = ({
    width = 24,
    height = 24,
}) => (
    <svg
        width={width}
        height={height}
        viewBox="0 0 24 24"
        version="1.1"
        xmlns="http://www.w3.org/2000/svg"
    >
        <title>icon/contact-envelope-fill</title>
        <g
            id="Symbols"
            stroke="none"
            strokeWidth="1"
            fill="currentColor"
            fillRule="evenodd"
        >
            <g id="icon/contact-envelope-fill" fillRule="evenodd">
                <path d="M20,10.839 L20,16 C20,17.1045695 19.2040618,18 18.2222222,18 L5.77777778,18 C4.79593822,18 4,17.1045695 4,16 L4,10.839 L10.9066667,14.724 C11.594924,15.1112087 12.405076,15.1112087 13.0933333,14.724 L20,10.839 Z M18.2222222,6 C19.2040618,6 20,6.8954305 20,8 L20,9.162 L12.4968889,13.382 C12.1840888,13.5579434 11.8159112,13.5579434 11.5031111,13.382 L4,9.161 L4,8 C4,6.8954305 4.79593822,6 5.77777778,6 Z" />
            </g>
        </g>
    </svg>
);
