import React from 'react';
import InformationBlock from "../../primitives/Information";
import InfoIcon from "../graphics/InfoIcon";
import Html from "../helper/Html";
type Props = {
text?: string,
}
export default function Information({ text }: Props) {
if (text) {
return (
TEXT MISSING
; }