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

const ViewLarge48: 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="M4.5 6A1.5 1.5 0 0 1 6 4.5h36A1.5 1.5 0 0 1 43.5 6v28a1.5 1.5 0 0 1-1.5 1.5H6A1.5 1.5 0 0 1 4.5 34V6Zm3 1.5v25h33v-25h-33ZM4.5 42A1.5 1.5 0 0 1 6 40.5h36a1.5 1.5 0 0 1 0 3H6A1.5 1.5 0 0 1 4.5 42Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="48" height="48" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default ViewLarge48