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

const Play20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M5.46 3.516a.75.75 0 0 1 .751.003l10 5.833a.75.75 0 0 1 0 1.296l-10 5.833a.75.75 0 0 1-1.128-.648V4.167a.75.75 0 0 1 .377-.65Zm1.123 1.957v9.055L14.345 10 6.583 5.473Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Play20