D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
alerting
/
unified
/
components
/
Filename :
Strong.tsx
back
Copy
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 };