15 lines
292 B
TypeScript

import { Background } from 'ui';
type Props = {
readonly html: string;
};
export function Conditions({ html }: Props) {
return (
<Background
dangerouslySetInnerHTML={{ __html: html }}
className="lg:w-standard grid w-full justify-center p-5 font-[calibri]"
/>
);
}