mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-11 08:09:10 +02:00
7 lines
No EOL
226 B
Text
7 lines
No EOL
226 B
Text
export const VersionBadge = ({ version }) => {
|
|
return (
|
|
<Badge stroke size="lg" icon='gift' iconType='regular' className="version-badge">
|
|
New in version <code>{version}</code>
|
|
</Badge>
|
|
);
|
|
}; |