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

export const CastIcon = ({
  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="M2 10v2c4.96 0 9 4.04 9 9h2c0-6.07-4.93-11-11-11" />
      <path d="M2 14v2c2.76 0 5 2.24 5 5h2c0-3.86-3.14-7-7-7" />
      <path d="M3.5 18a1.5 1.5 0 1 0 0 3 1.5 1.5 0 1 0 0-3M20 3H4c-1.1 0-2 .9-2 2v3h2V5h16v14h-5v2h5c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2" />
  </svg>
);

Icon

Cast

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

CameraCaptionsCopyrightRegisteredShutterWhiteboard