export const AuthorIcon: React.FC<React.SVGAttributes<{}>> = (props) => (
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" {...props}>
    <path
      fill="currentColor"
      d="M15 7.5a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"
      opacity={0.2}
    />
    <path
      fill="currentColor"
      d="M18.04 16.563c-1.19-2.057-3.023-3.532-5.163-4.232a5.625 5.625 0 1 0-5.754 0c-2.14.699-3.974 2.174-5.164 4.232a.625.625 0 1 0 1.082.625c1.472-2.544 4.074-4.063 6.959-4.063s5.487 1.519 6.959 4.063a.627.627 0 0 0 1.047.079.625.625 0 0 0 .035-.704ZM5.626 7.5a4.375 4.375 0 1 1 8.75 0 4.375 4.375 0 0 1-8.75 0Z"
    />
  </svg>
);
