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

const Administration64: 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="M31.003 6.879a1.5 1.5 0 0 1 1.993 0l24 21.333A1.5 1.5 0 0 1 56 30.833h-6.5V46.5H52a1.5 1.5 0 0 1 1.5 1.5v6.5H56a1.5 1.5 0 1 1 0 3H8a1.5 1.5 0 0 1 0-3h2.5V48a1.5 1.5 0 0 1 1.5-1.5h2.5V30.833H8a1.5 1.5 0 0 1-.997-2.62l24-21.334ZM46.5 46.5V30.833h-7.667V46.5H46.5Zm-10.667 0V30.833h-7.666V46.5h7.666Zm-10.666 0V30.833H17.5V46.5h7.667ZM48 27.833H11.945L32 10.007l20.056 17.826H48ZM48 49.5H13.5v5h37v-5H48ZM30.333 20a1.667 1.667 0 1 1 3.334 0 1.667 1.667 0 0 1-3.334 0ZM32 16.333a3.667 3.667 0 1 0 0 7.334 3.667 3.667 0 0 0 0-7.334Z"/>
</svg>
)
export default Administration64