mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-09-13 07:10:51 +02:00
14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
|
|
import { AppVersion } from "@/lib/types";
|
||
|
|
|
||
|
|
interface VersionBadgeProps {
|
||
|
|
version: AppVersion;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function VersionBadge({ version }: VersionBadgeProps) {
|
||
|
|
return (
|
||
|
|
<div className="flex items-center">
|
||
|
|
<span className="font-medium text-sm">{version.version}</span>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|