import EmphasisHtmlTransformer from './EmphasisHtmlTransformer';
const SUPPORTED_TAGS = ['important', 'positive', 'negative', 'warning'];
const emphasisHtmlTransformer = new EmphasisHtmlTransformer(SUPPORTED_TAGS);
export type EmphasisProps = {
text?: string;
};
const Emphasis = ({ text = undefined }: EmphasisProps) => {
if (!text) {
return null;
}
const transformedText = emphasisHtmlTransformer.transform(text);
// eslint-disable-next-line react/no-danger
return transformedText ? : null;
};
export default Emphasis;