UNPKG

@voxket-ai/voxket-live

Version:

A React widget for embedding Voxket-powered audio/video/chat experiences.

16 lines (15 loc) 541 B
import { default as React } from 'react'; export interface AudioOrbUI { /** Override wave / ring color. Accepts any CSS color string (e.g. '#7c3aed', 'hsla(255,80%,60%,1)') */ waveColor?: string; /** Radial-gradient background stops [inner, mid, outer]. Accepts any CSS color strings. */ bgColors?: [string, string, string]; } interface AudioOrbProps { audioLevel: number; isPlaying: boolean; size?: number; audioOrbUI?: AudioOrbUI; } declare const AudioOrb: React.FC<AudioOrbProps>; export default AudioOrb;