We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 737bfa8 commit 9a17e53Copy full SHA for 9a17e53
apps/site/components/Downloads/ReleaseOverview/index.tsx
@@ -4,6 +4,7 @@ import {
4
CodeBracketSquareIcon,
5
Square3Stack3DIcon,
6
} from '@heroicons/react/24/outline';
7
+import NpmIcon from '@node-core/ui-components/Icons/PackageManager/Npm';
8
import { useTranslations } from 'next-intl';
9
import type { FC, ReactNode, SVGProps } from 'react';
10
@@ -64,7 +65,7 @@ export const ReleaseOverview: FC<ReleaseOverviewProps> = ({ release }) => {
64
65
)}
66
{release.npm && (
67
<Item
- Icon={CodeBracketSquareIcon}
68
+ Icon={NpmIcon}
69
title={`v${release.npm}`}
70
subtitle={t('components.releaseOverview.npmVersion')}
71
/>
0 commit comments