fix: issue stats refactor (#6705)

* fix: issue stats refactor

* fix: refactor

* fix: ui color

* fix: translation key
This commit is contained in:
Akshita Goyal 2025-03-06 13:44:37 +05:30 committed by GitHub
parent f01d82ad1e
commit 44af90dc6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 98 additions and 53 deletions

View file

@ -4,9 +4,10 @@ import React, { FC } from "react";
type Props = {
issueId: string;
className?: string;
size?: number;
showProgressText?: boolean;
showLabel?: boolean;
};
export const IssueStats: FC<Props> = (props) => {
const { issueId } = props;
return <></>;
};
export const IssueStats: FC<Props> = (props) => <></>;