We recommend that you familiarize yourselves with UI Customization Concepts before attempting to modify any components.

VeltRecorderAllToolWireframe

<VeltWireframe>
    <VeltRecorderAllToolWireframe>
        {/* ... Add your content here */}
    </VeltRecorderAllToolWireframe>
</VeltWireframe>

VeltRecorderAllToolMenuWireframe

<VeltWireframe>
    <VeltRecorderAllToolMenuWireframe>
        <VeltRecorderAllToolMenuWireframe.Audio>
            {/* ... Add your content here */}
        </VeltRecorderAllToolMenuWireframe.Audio>
        <VeltRecorderAllToolMenuWireframe.Video>
            {/* ... Add your content here */}
        </VeltRecorderAllToolMenuWireframe.Video>
        <VeltRecorderAllToolMenuWireframe.Screen>
            {/* ... Add your content here */}
        </VeltRecorderAllToolMenuWireframe.Screen>
    </VeltRecorderAllToolMenuWireframe>
</VeltWireframe>

Audio

<VeltWireframe>
    <VeltRecorderAllToolMenuWireframe.Audio>
        {/* ... Add your content here */}
    </VeltRecorderAllToolMenuWireframe.Audio>
</VeltWireframe>

Video

<VeltWireframe>
    <VeltRecorderAllToolMenuWireframe.Video>
        {/* ... Add your content here */}
    </VeltRecorderAllToolMenuWireframe.Video>
</VeltWireframe>

Screen

<VeltWireframe>
    <VeltRecorderAllToolMenuWireframe.Screen>
        {/* ... Add your content here */}
    </VeltRecorderAllToolMenuWireframe.Screen>
</VeltWireframe>

VeltRecorderAudioToolWireframe

<VeltWireframe>
    <VeltRecorderAudioToolWireframe>
        {/* ... Add your content here */}
    </VeltRecorderAudioToolWireframe>
</VeltWireframe>

VeltRecorderVideoToolWireframe

<VeltWireframe>
    <VeltRecorderVideoToolWireframe>
        {/* ... Add your content here */}
    </VeltRecorderVideoToolWireframe>
</VeltWireframe>

VeltRecorderScreenToolWireframe

<VeltWireframe>
    <VeltRecorderScreenToolWireframe>
        {/* ... Add your content here */}
    </VeltRecorderScreenToolWireframe>
</VeltWireframe>

Styling

Disable ShadowDOM

  • By default, ShadowDOM is used to ensure that your app’s CSS does not interfere with the styling of the SDK components.
  • Disable the shadow dom to apply your custom CSS to the component.

Default: true

<VeltRecorderTool shadowDom={false} />

Dark Mode

Default: false

<VeltRecorderTool darkMode={true} />