export const AdminListIcon: React.FC<React.SVGAttributes<{}>> = (props) => (
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" {...props}>
    <g fill="currentColor" clipPath="url(#a)">
      <path
        d="M9.375 8.125a3.125 3.125 0 1 1-6.25 0 3.125 3.125 0 0 1 6.25 0Z"
        opacity={0.2}
      />
      <path d="M11.25 6.25a.625.625 0 0 1 .625-.625h7.5a.625.625 0 1 1 0 1.25h-7.5a.625.625 0 0 1-.625-.625Zm8.125 3.125h-7.5a.625.625 0 0 0 0 1.25h7.5a.624.624 0 1 0 0-1.25Zm0 3.75H13.75a.625.625 0 1 0 0 1.25h5.625a.624.624 0 1 0 0-1.25Zm-7.52 1.719a.625.625 0 0 1-1.211.313c-.482-1.87-2.37-3.282-4.395-3.282-2.024 0-3.913 1.41-4.394 3.281a.625.625 0 0 1-1.211-.312c.436-1.696 1.706-3.07 3.317-3.75a3.75 3.75 0 1 1 4.576 0c1.612.68 2.882 2.054 3.318 3.75ZM6.25 10.625a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" />
    </g>
    <defs>
      <clipPath id="a">
        <path fill="#fff" d="M0 0h20v20H0z" />
      </clipPath>
    </defs>
  </svg>
);
