Lowdefy
v3.17.2/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.
info
Status of the result. Determines image and color.
Result subtitle or secondary text.
Result title or primary text.
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.
        type: string
      title:
        description: Result title or primary text.
        type: string
    type: object