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

const Image64: 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="M8 6.5A1.5 1.5 0 0 0 6.5 8v48A1.5 1.5 0 0 0 8 57.5h48a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 56 6.5H8Zm1.5 35.167V9.5h45v32.167h-8.549l-7.723-15.448a1 1 0 0 0-1.79 0l-3.105 6.212-5.772-11.545a1 1 0 0 0-1.789 0l-10.39 20.78H9.5Zm35.855 2a.97.97 0 0 1-.042 0H16.02a1.442 1.442 0 0 1-.042 0H9.5V54.5h45V43.667h-9.145Zm-8.022-14.764 6.382 12.764H17.618l9.049-18.098 5.772 11.545a1 1 0 0 0 1.789 0l3.105-6.211ZM37 17.333a1.667 1.667 0 1 1 3.333 0 1.667 1.667 0 0 1-3.333 0Zm1.667-3.666a3.667 3.667 0 1 0 0 7.333 3.667 3.667 0 0 0 0-7.333Z"/>
</svg>
)
export default Image64