mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
14 lines
250 B
TypeScript
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 };
|