import React from 'react'; import { RenderWithData } from "../../index"; import { TextBlock } from "../../primitives/Block"; import Html from "../helper/Html"; import InfoIcon from '../graphics/InfoIcon'; export default function Text({ debug, heading, id, text, warning = false, printonly = false, printhide = false, }: RenderWithData<"Text">) { return ( {warning && }
); }