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

const More20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M10.75 4.167a.75.75 0 0 0-1.5 0V9.25H4.167a.75.75 0 0 0 0 1.5H9.25v5.083a.75.75 0 0 0 1.5 0V10.75h5.083a.75.75 0 0 0 0-1.5H10.75V4.167Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default More20