Files

13 lines
292 B
TypeScript

import React from 'react';
import { useTheme2 } from '@grafana/ui';
interface Props {}
const Strong = ({ children }: React.PropsWithChildren<Props>) => {
const theme = useTheme2();
return <strong style={{ color: theme.colors.text.primary }}>{children}</strong>;
};
export { Strong };