MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / SidebarInput

Function SidebarInput

src/components/ui/sidebar.tsx:321–333  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof Input>)

Source from the content-addressed store, hash-verified

319}
320
321function 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
335function SidebarHeader({ className, ...props }: React.ComponentProps<"div">) {
336 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected