2023-11-28 12:28:53 +03:00

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]"
/>
);
}