export default { name: "Raw HTML", acceptsChildren: false, category: "Basic", props: [ { label: "Text Content", name: "value", required: true, type: { kind: "text", isDynamic: true }, default: "
Hello World
", placeholder: "enter some text", help: "The text to display", }, ], defaultStyles: { "": { "font-family": "var(--theme-fonts-body)", }, }, sources: [], } as const;