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

const Cross64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M51.727 14.394a1.5 1.5 0 0 0-2.121-2.121L32 29.879 14.394 12.273a1.5 1.5 0 1 0-2.121 2.121L29.879 32 12.273 49.606a1.5 1.5 0 1 0 2.121 2.121L32 34.123l17.606 17.605a1.5 1.5 0 1 0 2.121-2.12L34.121 32l17.606-17.606Z"/>
</svg>
)
export default Cross64