27 lines
666 B
TypeScript
27 lines
666 B
TypeScript
import { css } from '@emotion/css';
|
|
import * as React from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { useStyles2 } from '@grafana/ui';
|
|
|
|
import { CatalogPlugin } from '../../types';
|
|
|
|
type Props = {
|
|
plugin: CatalogPlugin;
|
|
};
|
|
|
|
export function PluginUpdateAvailableBadge({ plugin }: Props): React.ReactElement | null {
|
|
const styles = useStyles2(getStyles);
|
|
return <p className={styles.hasUpdate}>Update available!</p>;
|
|
}
|
|
|
|
export const getStyles = (theme: GrafanaTheme2) => {
|
|
return {
|
|
hasUpdate: css({
|
|
color: theme.colors.text.secondary,
|
|
fontSize: theme.typography.bodySmall.fontSize,
|
|
marginBottom: 0,
|
|
}),
|
|
};
|
|
};
|