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

const A11y64: 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="M32 9.5C19.574 9.5 9.5 19.574 9.5 32S19.574 54.5 32 54.5 54.5 44.426 54.5 32 44.426 9.5 32 9.5ZM6.5 32C6.5 17.917 17.917 6.5 32 6.5S57.5 17.917 57.5 32 46.083 57.5 32 57.5 6.5 46.083 6.5 32Zm10.825-10.004a1.5 1.5 0 0 1 2.012-.671c2.422 1.21 7.54 2.508 12.663 2.508 5.122 0 10.241-1.297 12.663-2.508a1.5 1.5 0 0 1 1.341 2.683c-2.41 1.206-6.66 2.352-11.17 2.71v6.266l.021.045a121.085 121.085 0 0 1 2.019 4.37c1.172 2.678 2.549 6.108 3.248 8.904a1.5 1.5 0 1 1-2.91.728c-.635-2.538-1.925-5.775-3.086-8.43a118.492 118.492 0 0 0-2.092-4.512l-.032-.065-.002-.003-.002.003-.032.065a68.262 68.262 0 0 0-.59 1.221c-.391.823-.926 1.975-1.502 3.291-1.161 2.655-2.451 5.892-3.085 8.43a1.5 1.5 0 1 1-2.91-.728c.698-2.796 2.075-6.226 3.247-8.904a121.085 121.085 0 0 1 2.018-4.37l.023-.045v-6.266c-4.511-.358-8.76-1.504-11.171-2.71a1.5 1.5 0 0 1-.671-2.012ZM36 17.333a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"/>
</svg>
)
export default A11y64