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

const Play64: 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="M17.92 12.033a1.5 1.5 0 0 1 1.503.005l32 18.666a1.5 1.5 0 0 1 0 2.592l-32 18.666a1.5 1.5 0 0 1-2.256-1.295V13.333a1.5 1.5 0 0 1 .753-1.3Zm2.247 3.912v32.11L47.69 32 20.167 15.945Z"/>
</svg>
)
export default Play64