import React, { FC } from 'react'; import { Chip, Link } from '@mui/material'; export const NPMLink: FC<{ packageName: string; kind: 'esm' | 'cjs'; preBundled?: boolean }> = ({ packageName, kind, preBundled, }) => ( {packageName} {' '} {preBundled && } );