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

Function SelectScrollDownButton

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

Source from the content-addressed store, hash-verified

184}
185
186function SelectScrollDownButton({
187 className,
188 ...props
189}: React.ComponentProps<typeof SelectPrimitive.ScrollDownArrow>) {
190 return (
191 <SelectPrimitive.ScrollDownArrow
192 data-slot="select-scroll-down-button"
193 className={cn(
194 "bg-popover z-10 flex cursor-default items-center justify-center py-1 [&_svg:not([class*='size-'])]:size-4 bottom-0 w-full",
195 className
196 )}
197 {...props}
198 >
199 <HugeiconsIcon icon={ArrowDown01Icon} strokeWidth={2} />
200 </SelectPrimitive.ScrollDownArrow>
201 );
202}
203
204export {
205 Select,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected