Skip to content

Callout

marimo.callout

callout(
    value: object,
    kind: Literal[
        "neutral", "warn", "success", "info", "danger"
    ] = "neutral",
) -> Html

Build a callout output.

PARAMETER DESCRIPTION
value

A value to render in the callout

TYPE: object

kind

The kind of callout (affects styling).

TYPE: Literal['neutral', 'warn', 'success', 'info', 'danger'] DEFAULT: 'neutral'

RETURNS DESCRIPTION
Html

An HTML object.

TYPE: Html