import { css } from '@emotion/css'; import React from 'react'; import { useStyles2 } from '@grafana/ui'; import { AnnotationDetailsField } from '../AnnotationDetailsField'; type Props = { annotations: Array<[string, string]>; }; export function RuleDetailsAnnotations(props: Props): JSX.Element | null { const { annotations } = props; const styles = useStyles2(getStyles); if (annotations.length === 0) { return null; } return (
{annotations.map(([key, value]) => ( ))}
); } const getStyles = () => ({ annotations: css` margin-top: 46px; `, });