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

const Play48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M13.253 8.7a1.5 1.5 0 0 1 1.503.004l24 14a1.5 1.5 0 0 1 0 2.592l-24 14A1.5 1.5 0 0 1 12.5 38V10a1.5 1.5 0 0 1 .753-1.3Zm2.247 3.912v22.776L35.023 24 15.5 12.612Z"/>
</svg>
)
export default Play48