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

Function SelectScrollDownButton

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

Source from the content-addressed store, hash-verified

156}
157
158function SelectScrollDownButton({
159 className,
160 ...props
161}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>) {
162 return (
163 <SelectPrimitive.ScrollDownButton
164 data-slot="select-scroll-down-button"
165 className={cn(
166 "flex cursor-default items-center justify-center py-1",
167 className
168 )}
169 {...props}
170 >
171 <ChevronDownIcon className="size-4" />
172 </SelectPrimitive.ScrollDownButton>
173 )
174}
175
176export {
177 Select,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected