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

export const SpadeIcon = ({
  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.65 2.24a1 1 0 0 0-1.3 0L3.84 8.68A6.005 6.005 0 0 0 8.01 19c1.06 0 2.1-.3 3-.82V20h-3v2h8v-2h-3v-1.82c.9.52 1.94.82 3 .82 3.31 0 6-2.69 6-6 0-1.62-.67-3.19-1.88-4.36l-7.47-6.4ZM16 17c-1.25 0-2.45-.6-3.2-1.6l-.8-1.06-.8 1.06A3.999 3.999 0 0 1 4 13c0-1.09.44-2.12 1.18-2.84L12 4.32l6.77 5.8c.79.76 1.23 1.79 1.23 2.88 0 2.21-1.79 4-4 4" />
  </svg>
);

Icon

Spade

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

CircleClubCubeHeartHexagonPentagonPolygonRectangle