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

const Admin48: 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">
  <path fill-rule="evenodd" d="M7.5 24c0-9.113 7.387-16.5 16.5-16.5S40.5 14.887 40.5 24 33.113 40.5 24 40.5 7.5 33.113 7.5 24ZM24 4.5C13.23 4.5 4.5 13.23 4.5 24S13.23 43.5 24 43.5 43.5 34.77 43.5 24 34.77 4.5 24 4.5Zm1.36 6.866a1.5 1.5 0 0 0-2.72 0l-3.178 6.812-6.756 1.351a1.5 1.5 0 0 0-.656 2.632l4.82 3.944-1.347 7.634a1.5 1.5 0 0 0 2.349 1.482L24 30.843l6.128 4.378a1.5 1.5 0 0 0 2.35-1.482l-1.348-7.634 4.82-3.944a1.5 1.5 0 0 0-.656-2.632l-6.756-1.351-3.179-6.812Zm-3.5 8.768L24 15.547l2.14 4.587.322.688.744.149 4.388.878-3.044 2.49-.68.556.153.866.862 4.885-4.013-2.867-.872-.622-.872.622-4.013 2.867.862-4.885.153-.866-.68-.556-3.044-2.49 4.388-.878.744-.149.321-.688Z"/>
</svg>
)
export default Admin48