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