Copy code import type { SVGProps } from "react";
export type IconProps = {
size?: number | string;
color?: string;
className?: string;
} & SVGProps<SVGSVGElement>;
export const NestJs = ({
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="M13.78 2.03c-.14 0-.28.03-.4.08.26.17.41.4.48.66 0 .04.02.06.02.1v.09c.03.46-.11.51-.21.78-.15.34-.11.72.07 1.02.02.04.03.08.06.11-.2-1.3.89-1.5 1.1-1.91.02-.35-.28-.59-.51-.76-.18-.12-.4-.18-.62-.18Zm1.66.3c-.02.12 0 .09 0 .15l-.02.14-.03.12-.04.13-.06.12-.04.06-.03.05s-.05.08-.08.1a1 1 0 0 1-.08.1l-.1.08c-.11.09-.24.15-.34.23-.04.02-.08.04-.1.08-.04.02-.07.05-.1.08l-.09.1-.08.1-.07.1-.06.12-.04.12s-.03.08-.04.13v.07l-.02.06v.23l.02.13s0 .08.02.13l.04.12.03.08-1.18-.46-.6-.16-.32-.08c-.31-.06-.63-.11-.94-.14h-.03c-.85-.09-1.71-.06-2.55.08l-.24.05c-.16.02-.31.06-.46.1l-.24.06-.22.1-.18.08h-.02l-.14.09h-.04l-.16.09-.1.06-.05.02-.14.08-.13.08-.1.07-.1.09-.08.06-.03.02-.08.06s0 .02-.02.02l-.1.08v.02s-.07.06-.1.09h-.02l-.08.09c0 .02-.02.02-.03.04l-.08.09-.03.02-.11.13-.02.02c-.17.18-.35.34-.56.48-.3.2-.62.37-.97.48-.22.04-.44.13-.63.14l-.13.02-.13.03-.13.05-.12.06-.11.07s-.08.06-.1.09c-.04.02-.08.06-.1.1l-.09.1-.08.11-.07.12-.06.14-.05.14-.02.12v.02l-.04.14v.17c0 .07.03.13.06.19l.06.1.06.1c.06.06.12.11.19.16.12.11.15.15.31.23l.08.04h.02v.03c.02.09.04.17.08.25l.04.1v.02c.05.08.1.15.15.22l.08.1.1.09c.12.11.27.19.43.24h.02l.06.02c-.02.28-.02.54.02.64s.27-.22.5-.58c-.03.35-.05.78 0 .9.06.13.37-.27.64-.72a5.96 5.96 0 0 1 7.21 4.4c.07.28.12.57.14.86-.06-.56-.75-.86-1.07-.79-.16.38-.42.88-.84 1.18.03-.34.02-.7-.06-1.04-.11.48-.34.92-.64 1.3-.48.03-.95-.18-1.24-.56l-.04-.06-.04-.11-.03-.1v-.19s0-.08.02-.11c0-.03.02-.07.03-.1l.06-.11c.08-.24.08-.45-.08-.56l-.09-.06-.07-.02-.04-.02-.11-.02s-.07-.02-.1-.02h-.19l-.11.02-.11.02-.1.03-.1.05-.1.06c-1.2.78-.48 2.62.34 3.16-.3.06-.62.12-.71.18v.02c.47.28.99.48 1.53.59 2.67.52 5.25-1.22 5.77-3.89.01-.07.03-.14.04-.22l.03.14c.02.1.04.19.05.3l.02.14v.02l.02.13v.79c-.02.02-.02.03-.02.04 0 .05 0 .08-.02.12v.05c0 .06-.02.1-.02.15s-.03.15-.03.15v.02s-.02.1-.03.14v.02l-.04.14v.02l-.04.14-.05.17-.06.14-.06.15-.06.15s-.05.1-.08.14v.03s0 .02-.02.02c-.34.68-.84 1.28-1.45 1.74l-.13.09-.03.03-.11.08.02.02.22-.03c.17-.03.35-.06.52-.1l.07-.02.1-.02.1-.02c.51-.12 1.02-.3 1.5-.5a8.3 8.3 0 0 1-3.21 2.62 8.24 8.24 0 0 0 6.64-4.21c-.22 1.2-.69 2.33-1.39 3.32a8.16 8.16 0 0 0 3.56-5.53c.18.82.22 1.66.14 2.49 3.73-5.2.32-10.59-1.12-12.02v-.02l-.02.18c-.01.11-.03.23-.05.34l-.09.34c-.08.22-.17.43-.28.64-.2.36-.47.69-.79.96l-.12.11c-.18.15-.38.28-.59.38l-.32.14c-.22.08-.45.15-.69.18l-.35.05c-.32.02-.64 0-.95-.06l-.34-.09c.59-.05 1.15-.24 1.66-.54l.29-.21.26-.23.24-.26c.08-.09.15-.18.22-.28.02 0 .02-.03.03-.05l.15-.25c.11-.2.21-.42.28-.64.03-.11.06-.23.08-.34.02-.12.05-.23.06-.34l.02-.35v-.25l-.06-.34c-.02-.12-.04-.24-.08-.35-.03-.1-.06-.22-.11-.33a3 3 0 0 0-.14-.32l-.18-.3c-.14-.19-.28-.38-.44-.55-.27-.29-.6-.52-.96-.69-.15-.1-.31-.16-.47-.21Z" />
</svg>
);Default · 24px · currentColor
UI examples Size, inline, toolbar, and dark UI — works for any icon style.
Related languages-frameworks icons
Nest Js Icon — Free SVG Component The Nest 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 Nest Js icon in React Import the Nest 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: <Nest 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.