15 lines
261 B
TypeScript
15 lines
261 B
TypeScript
"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> = (props) => <></>;
|