MCPcopy Create free account
hub / github.com/R44VC0RP/opencode.cafe / SelectScrollUpButton

Function SelectScrollUpButton

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

Source from the content-addressed store, hash-verified

159}
160
161function SelectScrollUpButton({
162 className,
163 ...props
164}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) {
165 return (
166 <SelectPrimitive.ScrollUpButton
167 data-slot="select-scroll-up-button"
168 className={cn(
169 "flex cursor-default items-center justify-center py-1",
170 className
171 )}
172 {...props}
173 >
174 <ChevronUpIcon className="size-4" />
175 </SelectPrimitive.ScrollUpButton>
176 )
177}
178
179function SelectScrollDownButton({
180 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected