next-icons-logoNext IconsAll Icons
export type IconProps = {
  size?: number | string;
  color?: string;
  className?: string;
} & React.SVGProps<SVGSVGElement>;

export const LoaderCircleIcon = ({
  size = 24,
  color = "currentColor",
  className,
  ...props
}: IconProps) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    viewBox="0 0 24 24"
    width={size}
    height={size}
    fill={color}
    className={className}
    {...props}
  >
      <path d="m18.16,3.01c-.36-.62-1.02-1.01-1.74-1.01H7.58c-.72,0-1.38.39-1.74,1.01l-3.37,5.9c-.41.71-.33,1.62.19,2.26l7.79,9.52c.38.47.95.73,1.55.73s1.17-.27,1.55-.73l7.79-9.52c.52-.64.6-1.54.19-2.26l-3.37-5.9Zm-1.74.99l2.86,5h-3.07l-1.79-5h2Zm-8.63,7l2,5.73-4.68-5.73h2.68Zm6.3,0l-2.09,5.97-2.09-5.97h4.18Zm-4.17-2l1.79-5h.59l1.79,5h-4.16Zm6.29,2h2.68l-4.68,5.73,2-5.73ZM7.58,4v-1s0,1,0,1h2l-1.79,5h-3.07l2.86-5Z" />
  </svg>
);

Icon

LoaderCircle

Category

Loaders

Use case

Use this icon in navbar items, social link groups, profile actions, settings rows, and call-to-action buttons.

Size

48px

Color

#18181b

Related Loaders icons

LoaderDotsLoaderLines