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

export const PentagonIcon = ({
  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="M12.61 2.21c-.36-.28-.87-.28-1.23 0l-8.99 7c-.34.27-.47.72-.33 1.13l4 11c.14.4.52.66.94.66h10c.42 0 .8-.26.94-.66l4-11c.15-.41.02-.86-.33-1.13zM16.3 20H7.7l-3.51-9.66L12 4.26l7.81 6.08z" />
  </svg>
);

Icon

Pentagon

Category

shapes

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 shapes icons

CircleClubCubeHeartHexagonPolygonRectangleSpade