|
1
|
import type {HtmlProps} from '@givewp/forms/propTypes'; |
|
2
|
import styles from '../styles.module.scss'; |
|
3
|
|
|
4
|
export default function Html({html}: HtmlProps) { |
|
5
|
return <div className={styles.htmlField} dangerouslySetInnerHTML={{__html: html}} />; |
|
6
|
} |
|
7
|
|