Copy code import type { SVGProps } from "react";
export type IconProps = {
size?: number | string;
color?: string;
className?: string;
} & SVGProps<SVGSVGElement>;
export const ViteJs = ({
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="m20.92 5.1-4.07.74.65-2.25c.11-.38.04-.78-.2-1.09-.23-.31-.6-.5-.99-.5h-.1l-.14.02-6.6 1.29c-.56.11-.97.58-1 1.15l-.09 1.58-5.29-.95a.49.49 0 0 0-.51.72l9.09 15.94c.19.33.66.33.84 0l8.91-15.94c.2-.36-.11-.79-.51-.71ZM9.67 4.3l6.6-1.29h.05c.16 0 .28.15.23.31L15.32 7.6s-.01.08 0 .12c0 .01.01.02.02.03 0 .02.02.05.04.07 0 .01.02.02.03.03.02.01.04.03.06.04.01 0 .03 0 .05.01.02 0 .03.01.05.01h.05l1.89-.36h.1c.02 0 .03 0 .05.01s.04.03.06.05l.03.03c.02.02.02.05.03.08 0 .01.01.03.01.04 0 .04 0 .09-.02.13l-5.38 10.73-.1.15c-.03.05-.08.08-.12.09h-.18a.22.22 0 0 1-.1-.09s-.01-.02-.02-.03c-.02-.04-.04-.09-.02-.15l.87-4.2v-.12c0-.01-.01-.02-.02-.03a.2.2 0 0 0-.04-.06c0-.01-.02-.02-.03-.03-.02-.01-.04-.03-.06-.03-.01 0-.03 0-.04-.01h-.03c-.02 0-.05 0-.07.01l-1.13.34h-.14c-.02 0-.04-.02-.06-.03-.01 0-.02-.02-.03-.03-.02-.02-.03-.04-.04-.06 0-.01-.01-.02-.02-.03-.01-.04-.02-.08 0-.12l.55-2.67c.01-.07 0-.14-.05-.19 0 0 0-.01-.01-.02-.04-.05-.1-.07-.16-.08h-.08l-1.84.42h-.07c-.13 0-.24-.12-.23-.26l.41-6.85c0-.11.09-.2.2-.22Z" />
</svg>
);Default · 24px · currentColor
UI examples Size, inline, toolbar, and dark UI — works for any icon style.
Related languages-frameworks icons
Vite Js Icon — Free SVG Component The Vite Js 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 Vite Js icon in React Import the Vite Js 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: <Vite Js 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: languages-frameworks Browse more languages-frameworks icons in the Next Icons library. All icons are hand-crafted SVGs optimized for web performance.