Figure with Content Variation Anything of use can be passed into the content property. Demo
Fig. 2: This is a video.
This is a regular cell. This is a regular cell. This is a regular cell.
This is a regular cell. This is a regular cell. This is a regular cell.
This is a regular cell. This is a regular cell. This is a regular cell.
Fig. 3: This is a table.
Twig
{% set content %}
    {% set video %}
      <video-js data-account="1900410236" data-player="O3FkeBiaDz" data-embed="default" data-video-id="4892122320001" data-media-title data-media-duration controls class="c-base-video"></video-js>
    {% endset %}

    {% include '@bolt-elements-ratio/ratio.twig' with {
      content: video,
      ratio: 'wide'
    } only %}
  {% endset %}

{% include '@bolt-elements-figure/figure.twig' with {
  content: content,
  caption: 'Fig. 2: This is a video.'
} only %}
HTML
<figure class="e-bolt-figure">
  <video-js data-account="1900410236" data-player="O3FkeBiaDz" data-embed="default" data-video-id="4892122320001" data-media-title data-media-duration controls class="c-base-video"></video-js>
  <figcaption class="e-bolt-figure__caption">Fig. 2: This is a video.</figcaption>
</figure>