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

15 lines
337 B
TypeScript

import * as React from 'react';
import { Badge } from '@grafana/ui';
export function PluginAngularBadge(): React.ReactElement {
return (
<Badge
icon="exclamation-triangle"
text="Angular"
color="orange"
tooltip="This plugin uses deprecated functionality, support for which is being removed."
/>
);
}