BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/sv11-twango/voice-picker
This component no longer exists. It was in sv11-twango’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-09 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.

Voice Picker

sv11-twango/voice-picker
RemovedComponent

A searchable voice selector with audio preview and orb visualization.

Live preview

live · rendered by the registry
Rendered by sv11-twango on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add http://sv11.ui.twango.dev/r/voice-picker.json

Source

registry itemsv11.ui.twango.dev/r/voice-picker.json
1<script lang="ts" module>
2 import type { Voice } from "./types.js";
3
4 export type VoicePickerProps = {
5 /** Voices to display in the picker. Any object conforming to `Voice` works. */
6 voices: Voice[];
7 /** Selected voice ID for controlled usage. */
8 value?: string;
9 /** Called with the voice ID when the user picks a voice. */
10 onValueChange?: (value: string) => void;
11 /**
12 * Placeholder shown on the trigger when no voice is selected.
13 * @default "Select a voice..."
14 */
15 placeholder?: string;
16 /** Extra classes forwarded to the trigger button. */
17 class?: string;
18 /** Controlled popover open state. Leave undefined for uncontrolled. */
19 open?: boolean;
20 /** Called when the popover open state changes. */
21 onOpenChange?: (open: boolean) => void;
22 };
23</script>
24
25<script lang="ts">
26 import ChevronsUpDownIcon from "@lucide/svelte/icons/chevrons-up-down";
27 import { AudioPlayer } from "../audio-player/index.js";
28 import { Button } from "../button/index.js";
29 import * as Command from "../command/index.js";
30 import { Orb } from "../orb/index.js";
31 import * as Popover from "../popover/index.js";
32 import { cn } from "$UTILS$.js";
33 import VoicePickerItem from "./voice-picker-item.svelte";
34
35 let {
36 voices,
37 value,
38 onValueChange,
39 placeholder = "Select a voice...",
40 open,
41 onOpenChange,
42 class: className,
43 }: VoicePickerProps = $props();
44
45 let internalOpen = $state(false);
46 const isOpenControlled = $derived(open !== undefined);
47 const isOpen = $derived(isOpenControlled ? open! : internalOpen);
48
49 function setIsOpen(next: boolean) {
50 if (isOpenControlled) onOpenChange?.(next);
51 else internalOpen = next;
52 }
53
54 const selectedVoice = $derived(voices.find((v) => v.id === value));
55</script>
56
57<AudioPlayer>
58 <Popover.Root open={isOpen} onOpenChange={setIsOpen}>
59 <Popover.Trigger>
60 {#snippet child({ props })}
61 <Button
62 {...props}
63 variant="outline"
64 role="combobox"
65 aria-expanded={isOpen}
66 class={cn("w-full justify-between", className)}
67 >
68 {#if selectedVoice}
69 <div class="flex items-center gap-2 overflow-hidden">
70 <div class="relative size-6 shrink-0 overflow-visible">
71 <Orb agentState="thinking" class="absolute inset-0" />
72 </div>
73 <span class="truncate">{selectedVoice.name}</span>
74 </div>
75 {:else}
76 {placeholder}
77 {/if}
78 <ChevronsUpDownIcon class="ml-2 size-4 shrink-0 opacity-50" />
79 </Button>
80 {/snippet}
81 </Popover.Trigger>
82// … truncated

What it pulls in

npm packages

  • @lucide/svelte

Other registry items

  • https://sv11.ui.twango.dev/r/audio-player.json
  • button
  • command
  • https://sv11.ui.twango.dev/r/orb.json
  • popover

Facts

Registry
sv11-twango
Type
registry:ui
Access
Free
Files written
0
Licence
MIT
In the index
at or before 2026-08-02
Last confirmed
10 days ago

Go to the source

Docs on sv11-twango sv11.ui.twango.dev twangodev/sv11-ui on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex