Lowdefy
v3.23.3/container/Result/

Result

areas: content, extra

Used to provide feedback the results of a task or error.

extra
content
id: block_id
type: Result

properties:
Name of an Ant Design Icon or properties of an Icon block to customize icon to use as result image.
Status of the result. Determines image and color.
Result subtitle or secondary text - supports html.
Result title or primary text - supports html.
500 Error
An error occurred
id: error_example
type: Result
properties:
  status: 500
  title: An error occurred

type: object
properties:
  properties:
    additionalProperties: false
    properties:
      icon:
        description: >-
          Name of an Ant Design Icon or properties of an Icon block to customize
          icon to use as result image.
        type:
          - string
          - object
      status:
        default: info
        description: Status of the result. Determines image and color.
        enum:
          - success
          - error
          - info
          - warning
          - '404'
          - '403'
          - '500'
        type: string
      subTitle:
        description: Result subtitle or secondary text - supports html.
        type: string
      title:
        description: Result title or primary text - supports html.
        type: string
    type: object