Copy code import type { SVGProps } from "react";
export type IconProps = {
size?: number | string;
color?: string;
className?: string;
} & SVGProps<SVGSVGElement>;
export const ArcBrowser = ({
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="M21.95 8.69a2.546 2.546 0 0 0-2-3c-1.38-.28-2.73.62-3.01 2.01a5.4 5.4 0 0 1-.72 1.8l-2.35-4.95a2.56 2.56 0 0 0-2.31-1.46c-.98 0-1.89.57-2.31 1.46L6.88 9.53c-.56-1.25-2-1.84-3.28-1.33-1.3.53-1.94 2.02-1.41 3.33.45 1.13 1.24 2.19 2.26 3.12l-.78 1.64c-.61 1.27-.13 2.77 1.08 3.41.38.2.79.3 1.2.3.27 0 .54-.04.8-.13.67-.22 1.21-.69 1.51-1.33l.67-1.42a9.5 9.5 0 0 0 2.5.36c.91 0 1.83-.14 2.74-.4l.69 1.46c.42.89 1.33 1.46 2.31 1.46.27.03.46-.03.68-.09.71-.2 1.3-.7 1.61-1.38.33-.72.32-1.53-.02-2.24l-.83-1.74c1.72-1.59 2.9-3.65 3.34-5.83Zm-10.39 2.9.35.74c-.24.03-.47.03-.71.02zM7.35 18.1c-.19.39-.51.68-.92.81s-.84.1-1.22-.1c-.72-.39-1.01-1.33-.65-2.1l.67-1.4s.09.05.13.08c.38.28.77.53 1.18.76.01 0 .03.01.05.02.39.22.81.4 1.23.57.05.02.1.05.16.07l-.62 1.29Zm1.46-2.06c-1.26-.41-2.42-1.05-3.44-1.9-1.04-.88-1.82-1.92-2.26-3-.32-.8.07-1.71.86-2.03A1.57 1.57 0 0 1 6 9.97c.12.31.3.61.53.91.84 1.12 2.34 2.04 3.82 2.35.69.15 1.35.15 2.02.04l1.37 2.88c-1.61.44-3.24.42-4.91-.11Zm9.74 2.05c-.19.42-.53.71-.97.83-.14.04-.24.04-.41.06-.6 0-1.15-.35-1.4-.89l-2.64-5.56s-.02-.05-.04-.08l-.86-1.81a.73.73 0 0 0-.66-.42c-.29 0-.54.16-.66.42l-.71 1.5c-.12-.03-.24-.07-.36-.11-.1-.04-.2-.07-.3-.11-.22-.09-.43-.2-.64-.32-.06-.03-.12-.06-.17-.09-.25-.15-.48-.33-.7-.51-.08-.07-.15-.14-.22-.21-.1-.09-.19-.19-.27-.29l2.63-5.53c.26-.54.81-.89 1.41-.89s1.15.35 1.4.89l2.69 5.67s.02.04.02.05l1.87 3.94.98 2.06c.21.44.21.95.01 1.4m-1.83-7.56c.6-.81 1.02-1.72 1.2-2.65.17-.84.99-1.39 1.83-1.22.41.08.76.31.99.66s.31.76.23 1.17c-.38 1.89-1.37 3.67-2.81 5.09l-1.45-3.04Z" />
</svg>
);Default · 24px · currentColor
UI examples Size, inline, toolbar, and dark UI — works for any icon style.
Arc Browser Icon — Free SVG Component The Arc Browser icon is a free, open-source SVG icon component built with TypeScript for React, Next.js, Vue, Remix, Svelte, and Astro projects. No npm install or package dependency required — just copy the component code and paste it into your project.
How to use Arc Browser icon in React Import the Arc Browser component from your icons folder. Use it as a standard React component with props: size (number), color (string), className (string), and all standard SVG attributes via spread props.
Example: <Arc Browser size={24} color=“currentColor“ className=“shrink-0“ />
Features Zero dependencies — no package install needed TypeScript ready with full type safety Fully customizable size, color, and className Works with Tailwind CSS, styled-components, CSS modules Accessible — supports aria attributes Tree-shakeable — only import what you use MIT licensed — free for commercial use Compatible frameworks React, Next.js (App Router & Pages Router), Vue, Remix, Svelte, Astro, Nuxt, Gatsby, Vite, Angular, Qwik.
Category: browsers Browse more browsers icons in the Next Icons library. All icons are hand-crafted SVGs optimized for web performance.