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