"use client"; import type { FC } from "react"; import React from "react"; type Props = { issueId: string; className?: string; size?: number; showProgressText?: boolean; showLabel?: boolean; }; export const IssueStats: FC = (props) => <>;