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

const Cross48: 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="M39.06 11.06a1.5 1.5 0 0 0-2.12-2.12L24 21.878 11.06 8.939a1.5 1.5 0 0 0-2.12 2.122L21.878 24 8.939 36.94a1.5 1.5 0 0 0 2.122 2.12L24 26.122l12.94 12.94a1.5 1.5 0 0 0 2.12-2.122L26.122 24l12.94-12.94Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="48" height="48" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Cross48