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

const Player64: 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="M9.5 32C9.5 19.574 19.574 9.5 32 9.5S54.5 19.574 54.5 32 44.426 54.5 32 54.5 9.5 44.426 9.5 32ZM32 6.5C17.917 6.5 6.5 17.917 6.5 32S17.917 57.5 32 57.5 57.5 46.083 57.5 32 46.083 6.5 32 6.5Zm-5.214 13.556a1.5 1.5 0 0 0-2.286 1.277v21.334a1.5 1.5 0 0 0 2.286 1.277L44.12 33.278a1.5 1.5 0 0 0 0-2.555L26.786 20.056ZM40.471 32 27.5 39.982V24.018L40.471 32Z"/>
</svg>
)
export default Player64