2025-04-01 10:38:02 +09:00

15 lines
322 B
TypeScript

import * as React from 'react';
import { Badge } from '@grafana/ui';
export function PluginDeprecatedBadge(): React.ReactElement {
return (
<Badge
icon="exclamation-triangle"
text="Deprecated"
color="orange"
tooltip="This plugin is deprecated and no longer receives updates."
/>
);
}