MCPcopy Create free account
hub / github.com/MagicCube/agentara / SelectScrollUpButton

Function SelectScrollUpButton

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected