11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
/* eslint-disable react/no-danger */
|
|
type Props = {
|
|
readonly html: string;
|
|
};
|
|
|
|
export function Conditions({ html }: Props) {
|
|
return (
|
|
<div dangerouslySetInnerHTML={{ __html: html }} className="justify-center font-[calibri]" />
|
|
);
|
|
}
|