Function
SidebarInput
({
className,
...props
}: React.ComponentProps<typeof Input>)
Source from the content-addressed store, hash-verified
| 319 | } |
| 320 | |
| 321 | function SidebarInput({ |
| 322 | className, |
| 323 | ...props |
| 324 | }: React.ComponentProps<typeof Input>) { |
| 325 | return ( |
| 326 | <Input |
| 327 | data-slot="sidebar-input" |
| 328 | data-sidebar="input" |
| 329 | className={cn("bg-background h-8 w-full shadow-none", className)} |
| 330 | {...props} |
| 331 | /> |
| 332 | ) |
| 333 | } |
| 334 | |
| 335 | function SidebarHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 336 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected