Version: 5.xvm-live-indicatorThis can be used to indicate to the user that the current media is being streamed live.Visual#Usage#HTMLReactVueSvelteStencilAngular<vm-player> <!-- ... --> <vm-ui> <!-- ... --> <vm-controls> <!-- ... --> <vm-live-indicator></vm-live-indicator> </vm-controls> </vm-ui></vm-player>Copyimport React from 'react';import { Player, Ui, Controls, LiveIndicator } from '@vime/react'; function Example() { return ( <Player> {/* ... */} <Ui> {/* ... */} <Controls> <LiveIndicator /> </Controls> </Ui> </Player> );}Copyexample.vue<template> <Player> <!-- ... --> <Ui> <!-- ... --> <Controls> <LiveIndicator /> </Controls> </Ui> </Player></template> <script> import { Player, Ui, Controls, LiveIndicator } from '@vime/vue'; export default { components: { Player, Ui, Controls, LiveIndicator, }, };</script>Copyexample.svelte<Player> <!-- ... --> <Ui> <!-- ... --> <Controls> <LiveIndicator /> </Controls> </Ui></Player> <script lang="ts"> import { Player, Ui, Icons, Controls, LiveIndicator } from '@vime/svelte';</script>Copyclass Example { render() { return ( <vm-player> {/* ... */} <vm-ui> {/* ... */} <vm-controls> <vm-live-indicator /> </vm-controls> </vm-ui> </vm-player> ); }}Copyexample.html<vm-player> <!-- ... --> <vm-ui> <!-- ... --> <vm-controls> <!-- ... --> <vm-live-indicator></vm-live-indicator> </vm-controls> </vm-ui></vm-player>CopyCSS Custom Properties#NameDescription--vm-live-indicator-colorThe color of the live indicator dot.Dependencies#Used by#vm-default-controls