import React from 'react'; import { Button } from '~/components/ui/Button'; import type { GitLabStats } from '~/types/GitLab'; interface StatsDisplayProps { stats: GitLabStats; onRefresh?: () => void; isRefreshing?: boolean; } export function StatsDisplay({ stats, onRefresh, isRefreshing }: StatsDisplayProps) { return (