import React, { FC } from 'react';

import { WfoIconProps } from './WfoIconProps';

export const WfoMalfunction: FC<WfoIconProps> = ({
    width = 24,
    height = 24,
    color = '#000000',
}) => (
    <svg
        xmlns="http://www.w3.org/2000/svg"
        width={width}
        height={height}
        viewBox="0 0 24 24"
    >
        <path
            fill={color}
            fillRule="evenodd"
            d="M19.7677852,16.9226665 L13.1681411,5.66546379 C12.9268253,5.25369109 12.4808736,5 11.9979661,5 C11.5150585,5 11.0691068,5.25369109 10.8275152,5.66546379 L4.1809869,17.0038803 C3.93967103,17.4156529 3.93967103,17.9227635 4.1809869,18.3348078 C4.42230276,18.7465805 4.86853026,19 5.35143777,19 L18.6447701,19 C18.6464249,19 18.6480796,19 18.6486312,19 C19.3951935,19 20,18.404342 20,17.6690724 C20,17.392837 19.9142294,17.1353433 19.7677852,16.9226665 Z M11.9999337,7.625 C12.9325804,7.625 13.1601462,8.3409621 13.102855,8.75105518 L12.543267,13.1954083 C12.5246141,13.5973376 12.2184395,13.75 11.9999337,13.75 C11.7550473,13.75 11.4781845,13.6182913 11.4566004,13.1954083 L10.8970123,8.75105518 C10.8397212,8.32926071 11.0728829,7.625 11.9999337,7.625 Z M12.941268,16.8635383 C12.6957604,17.1082157 12.3516142,17.25 12,17.25 C11.6477635,17.25 11.3039284,17.1082157 11.0559315,16.8635383 C10.8079347,16.6194733 10.6666667,16.2817021 10.6666667,15.9347439 C10.6666667,15.5908481 10.8079347,15.2521582 11.0559315,15.0083994 C11.3039284,14.7643345 11.6477635,14.625 12,14.625 C12.3519253,14.625 12.6957604,14.763722 12.941268,15.0083994 C13.1920653,15.2524644 13.3333333,15.5908481 13.3333333,15.9347439 C13.3333333,16.2813958 13.1920653,16.6194733 12.941268,16.8635383 Z"
        ></path>
    </svg>
);
