Skip to content

Commit 9a17e53

Browse files
committed
feat: use npm icon
1 parent 737bfa8 commit 9a17e53

File tree

1 file changed

+2
-1
lines changed
  • apps/site/components/Downloads/ReleaseOverview

1 file changed

+2
-1
lines changed

apps/site/components/Downloads/ReleaseOverview/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
CodeBracketSquareIcon,
55
Square3Stack3DIcon,
66
} from '@heroicons/react/24/outline';
7+
import NpmIcon from '@node-core/ui-components/Icons/PackageManager/Npm';
78
import { useTranslations } from 'next-intl';
89
import type { FC, ReactNode, SVGProps } from 'react';
910

@@ -64,7 +65,7 @@ export const ReleaseOverview: FC<ReleaseOverviewProps> = ({ release }) => {
6465
)}
6566
{release.npm && (
6667
<Item
67-
Icon={CodeBracketSquareIcon}
68+
Icon={NpmIcon}
6869
title={`v${release.npm}`}
6970
subtitle={t('components.releaseOverview.npmVersion')}
7071
/>

0 commit comments

Comments
 (0)