MCPcopy Create free account
hub / github.com/ResearAI/AutoFigure / SelectScrollUpButton

Function SelectScrollUpButton

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected