mirror of
https://github.com/grafana/grafana.git
synced 2025-09-19 21:24:56 +08:00
13 lines
292 B
TypeScript
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 };
|