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

const ArrowTopRight48: 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">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M16.5 10A1.5 1.5 0 0 1 18 8.5h20a1.5 1.5 0 0 1 1.5 1.5v20a1.5 1.5 0 0 1-3 0V13.621l-25.44 25.44a1.5 1.5 0 1 1-2.12-2.122L34.378 11.5H18a1.5 1.5 0 0 1-1.5-1.5Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="48" height="48" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default ArrowTopRight48