import { RiInstallLine } from '@remixicon/react' import { formatNumber } from '@/utils/format' type Props = { downloadCount: number } const DownloadCount = ({ downloadCount, }: Props) => { return (
{formatNumber(downloadCount)}
) } export default DownloadCount