Files
grafana/public/app/features/alerting/unified/components/Strong.tsx
2024-05-24 16:40:49 +02:00

14 lines
250 B
TypeScript

import React, { ReactNode } from 'react';
import { Text } from '@grafana/ui';
interface Props {
children: NonNullable<ReactNode>;
}
const Strong = ({ children }: Props) => {
return <Text weight="bold">{children}</Text>;
};
export { Strong };