MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / SelectScrollUpButton

Function SelectScrollUpButton

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

Source from the content-addressed store, hash-verified

166}
167
168function SelectScrollUpButton({
169 className,
170 ...props
171}: React.ComponentProps<typeof SelectPrimitive.ScrollUpArrow>) {
172 return (
173 <SelectPrimitive.ScrollUpArrow
174 data-slot="select-scroll-up-button"
175 className={cn(
176 "bg-popover z-10 flex cursor-default items-center justify-center py-1 [&_svg:not([class*='size-'])]:size-4 top-0 w-full",
177 className
178 )}
179 {...props}
180 >
181 <HugeiconsIcon icon={ArrowUp01Icon} strokeWidth={2} />
182 </SelectPrimitive.ScrollUpArrow>
183 );
184}
185
186function SelectScrollDownButton({
187 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected