/* Copyright 2026 Marimo. All rights reserved. */ import type { JSX } from "react"; import { z } from "zod"; import { CalloutOutput } from "../../components/editor/output/CalloutOutput"; import { type Intent, zodIntent } from "../impl/common/intent"; import type { IStatelessPlugin, IStatelessPluginProps, } from "../stateless-plugin"; interface Data { /** * The html to render */ html: string; /** * The kind of callout */ kind: Intent; } export class CalloutPlugin implements IStatelessPlugin { tagName = "marimo-callout-output"; validator = z.object({ html: z.string(), kind: zodIntent, }); render({ data }: IStatelessPluginProps): JSX.Element { return ; } }