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

const Admin64: 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="M9.5 32C9.5 19.574 19.574 9.5 32 9.5S54.5 19.574 54.5 32 44.426 54.5 32 54.5 9.5 44.426 9.5 32ZM32 6.5C17.917 6.5 6.5 17.917 6.5 32S17.917 57.5 32 57.5 57.5 46.083 57.5 32 46.083 6.5 32 6.5Zm1.36 8.866a1.5 1.5 0 0 0-2.72 0l-4.345 9.312-9.256 1.851a1.5 1.5 0 0 0-.656 2.632l6.654 5.444-1.848 10.468a1.5 1.5 0 0 0 2.35 1.48l8.46-6.043 8.462 6.044a1.5 1.5 0 0 0 2.35-1.481l-1.848-10.468 6.653-5.444a1.5 1.5 0 0 0-.655-2.632l-9.256-1.851-4.346-9.312Zm-4.668 11.268L32 19.547l3.307 7.087.321.688.744.149 6.889 1.378-4.878 3.99-.68.556.153.866 1.362 7.718-6.346-4.533-.872-.623-.872.623-6.346 4.533 1.362-7.718.152-.866-.68-.556-4.877-3.99 6.888-1.378.745-.149.32-.688Z"/>
</svg>
)
export default Admin64