ComboxboxInputAddon() — ui Function Reference
Architecture documentation for the ComboxboxInputAddon() function in combobox-example.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 8674f632_75c3_f55f_9de8_ee1467dbdda0["ComboxboxInputAddon()"] 08c943e1_cbb3_6c4d_0fd2_1693e54a1d0a["combobox-example.tsx"] 8674f632_75c3_f55f_9de8_ee1467dbdda0 -->|defined in| 08c943e1_cbb3_6c4d_0fd2_1693e54a1d0a style 8674f632_75c3_f55f_9de8_ee1467dbdda0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/bases/base/examples/combobox-example.tsx lines 867–902
function ComboxboxInputAddon() {
return (
<Example title="With Icon Addon">
<Combobox items={timezones}>
<ComboboxInput placeholder="Select a timezone">
<InputGroupAddon>
<IconPlaceholder
lucide="GlobeIcon"
tabler="IconGlobe"
hugeicons="Globe02Icon"
phosphor="GlobeIcon"
remixicon="RiGlobeLine"
/>
</InputGroupAddon>
</ComboboxInput>
<ComboboxContent alignOffset={-28} className="w-60">
<ComboboxEmpty>No timezones found.</ComboboxEmpty>
<ComboboxList>
{(group) => (
<ComboboxGroup key={group.value} items={group.items}>
<ComboboxLabel>{group.value}</ComboboxLabel>
<ComboboxCollection>
{(item) => (
<ComboboxItem key={item} value={item}>
{item}
</ComboboxItem>
)}
</ComboboxCollection>
</ComboboxGroup>
)}
</ComboboxList>
</ComboboxContent>
</Combobox>
</Example>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does ComboxboxInputAddon() do?
ComboxboxInputAddon() is a function in the ui codebase, defined in apps/v4/registry/bases/base/examples/combobox-example.tsx.
Where is ComboxboxInputAddon() defined?
ComboxboxInputAddon() is defined in apps/v4/registry/bases/base/examples/combobox-example.tsx at line 867.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free