17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import { Column } from "@revolt/ui";
|
|
|
|
import { VoiceInputOptions } from "./VoiceInputOptions";
|
|
import { VoiceProcessingOptions } from "./VoiceProcessingOptions";
|
|
|
|
/**
|
|
* Configure voice options
|
|
*/
|
|
export function VoiceSettings() {
|
|
return (
|
|
<Column gap="lg">
|
|
<VoiceInputOptions />
|
|
<VoiceProcessingOptions />
|
|
</Column>
|
|
);
|
|
}
|