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

const Cross32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M26.04 7.374a1 1 0 1 0-1.414-1.415L16 14.586 7.374 5.959A1 1 0 1 0 5.96 7.374L14.586 16 5.96 24.626a1 1 0 1 0 1.414 1.414L16 17.414l8.626 8.626a1 1 0 0 0 1.414-1.414L17.414 16l8.626-8.626Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="32" height="32" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Cross32