InputGroupButton() — ui Function Reference
Architecture documentation for the InputGroupButton() function in input-group.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 61fa5324_4772_3485_97ef_79b85c20f440["InputGroupButton()"] a7a6a8dd_f631_130f_3602_11f1a5e39d4c["input-group.tsx"] 61fa5324_4772_3485_97ef_79b85c20f440 -->|defined in| a7a6a8dd_f631_130f_3602_11f1a5e39d4c style 61fa5324_4772_3485_97ef_79b85c20f440 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
deprecated/www/registry/default/ui/input-group.tsx lines 100–117
function InputGroupButton({
className,
type = "button",
variant = "ghost",
size = "xs",
...props
}: Omit<React.ComponentProps<typeof Button>, "size"> &
VariantProps<typeof inputGroupButtonVariants>) {
return (
<Button
type={type}
data-size={size}
variant={variant}
className={cn(inputGroupButtonVariants({ size }), className)}
{...props}
/>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does InputGroupButton() do?
InputGroupButton() is a function in the ui codebase, defined in deprecated/www/registry/default/ui/input-group.tsx.
Where is InputGroupButton() defined?
InputGroupButton() is defined in deprecated/www/registry/default/ui/input-group.tsx at line 100.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free