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

export const RegisteredIcon = ({
  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="M16 10c0-1.65-1.35-3-3-3H9c-.55 0-1 .45-1 1v9h2v-4h1.46l2.67 4h2.4l-2.75-4.12c1.27-.35 2.21-1.5 2.21-2.88Zm-3 1h-3V9h3c.55 0 1 .45 1 1s-.45 1-1 1" />
  </svg>
);

Icon

Registered

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

CameraCaptionsCastCopyrightShutterWhiteboard