import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const Sound64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M36.167 13.333a1.5 1.5 0 0 0-2.332-1.248L18.212 22.5H8A1.5 1.5 0 0 0 6.5 24v16A1.5 1.5 0 0 0 8 41.5h10.212l15.623 10.415a1.5 1.5 0 0 0 2.332-1.248V13.333Zm-16 11.47 13-8.667v31.728l-13-8.667V24.803Zm-3 .697H9.5v13h7.667v-13Zm26.038-2.772a1.5 1.5 0 0 1 2.067.477C47.061 26.067 48 29.005 48 32s-.94 5.933-2.728 8.795a1.5 1.5 0 1 1-2.544-1.59C44.273 36.734 45 34.339 45 32c0-2.338-.727-4.733-2.272-7.205a1.5 1.5 0 0 1 .477-2.067Zm8.682-6.267a1.5 1.5 0 0 0-2.44 1.744c6.293 8.812 6.293 18.778 0 27.59a1.5 1.5 0 1 0 2.44 1.744c7.04-9.855 7.04-21.223 0-31.078Z"/>
</svg>
)
export default Sound64