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

const Server64: 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 8v37.333a1.5 1.5 0 0 0 1.5 1.5h22.5V54.5H18.667a1.5 1.5 0 1 0 0 3h26.666a1.5 1.5 0 1 0 0-3H33.5v-7.667H56a1.5 1.5 0 0 0 1.5-1.5V8A1.5 1.5 0 0 0 56 6.5H8Zm24 37.333h22.5V28.167h-45v15.666H32Zm22.5-18.666h-45V9.5h45v15.667Zm-37.167-9.334a1.5 1.5 0 0 0 0 3h5.334a1.5 1.5 0 1 0 0-3h-5.334Zm0 18.667a1.5 1.5 0 0 0 0 3h5.334a1.5 1.5 0 0 0 0-3h-5.334Z"/>
</svg>
)
export default Server64