MCPcopy Create free account
hub / github.com/idosal/git-mcp / SelectScrollUpButton

Function SelectScrollUpButton

app/chat/components/ui/select.tsx:134–150  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>)

Source from the content-addressed store, hash-verified

132}
133
134function SelectScrollUpButton({
135 className,
136 ...props
137}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) {
138 return (
139 <SelectPrimitive.ScrollUpButton
140 data-slot="select-scroll-up-button"
141 className={cn(
142 "flex cursor-default items-center justify-center py-1",
143 className,
144 )}
145 {...props}
146 >
147 <ChevronUpIcon className="size-4" />
148 </SelectPrimitive.ScrollUpButton>
149 );
150}
151
152function SelectScrollDownButton({
153 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected