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

export const HexagonIcon = ({
  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="m20.53,7.15L12.53,2.15c-.32-.2-.74-.2-1.06,0L3.47,7.15c-.29.18-.47.5-.47.85v8c0,.34.18.67.47.85l8,5c.16.1.35.15.53.15s.37-.05.53-.15l8-5c.29-.18.47-.5.47-.85v-8c0-.34-.18-.67-.47-.85Zm-1.53,8.29l-7,4.38-7-4.38v-6.89l7-4.38,7,4.38v6.89Z" />
  </svg>
);

Icon

Hexagon

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

CircleClubCubeHeartPentagonPolygonRectangleSpade