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

Function SelectScrollDownButton

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

Source from the content-addressed store, hash-verified

177}
178
179function SelectScrollDownButton({
180 className,
181 ...props
182}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>) {
183 return (
184 <SelectPrimitive.ScrollDownButton
185 data-slot="select-scroll-down-button"
186 className={cn(
187 "flex cursor-default items-center justify-center py-1",
188 className
189 )}
190 {...props}
191 >
192 <ChevronDownIcon className="size-4" />
193 </SelectPrimitive.ScrollDownButton>
194 )
195}
196
197export {
198 Select,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected