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

export const CopyrightIcon = ({
  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 2C6.58 2 2 6.58 2 12s4.58 10 10 10 10-4.58 10-10S17.42 2 12 2m0 18c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8-3.66 8-8 8" />
      <path d="M12 9c.99 0 1.85.26 2.29.71L15.7 8.3c-1.12-1.12-2.81-1.29-3.71-1.29-2.76 0-5 2.24-5 5s2.24 5 5 5c.9 0 2.58-.17 3.71-1.29l-1.41-1.42c-.44.44-1.3.71-2.29.71-1.63 0-3-1.37-3-3s1.37-3 3-3Z" />
  </svg>
);

Icon

Copyright

Category

media-activity

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 media-activity icons

CameraCaptionsCastRegisteredShutterWhiteboard