Hiyve Components - v1.0.0
    Preparing search index...

    Interface StreamingIndicatorProps

    Props for the StreamingIndicator component.

    The StreamingIndicator component displays a visual indicator when streaming is active. It features a pulsing orange/amber dot animation and optional duration display.

    interface StreamingIndicatorProps {
        colors?: Partial<StreamingIndicatorColors>;
        duration?: number;
        isStreaming?: boolean;
        label?: string;
        showDuration?: boolean;
        showPulse?: boolean;
        size?: "small" | "medium" | "large";
        styles?: Partial<StreamingIndicatorStyles>;
        sx?: SxProps<Theme>;
    }
    Index

    Properties

    colors?: Partial<StreamingIndicatorColors>

    Custom colors

    duration?: number

    Streaming duration in seconds

    isStreaming?: boolean

    Whether streaming is active

    label?: string

    Label text (default: 'LIVE')

    showDuration?: boolean

    Show the duration (default: true)

    showPulse?: boolean

    Show pulsing animation (default: true)

    size?: "small" | "medium" | "large"

    Size variant (default: 'medium')

    styles?: Partial<StreamingIndicatorStyles>

    Custom styles

    sx?: SxProps<Theme>

    MUI sx styling prop