MCPcopy Create free account
hub / github.com/Open-Dev-Society/OpenStock / SelectScrollDownButton

Function SelectScrollDownButton

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

Source from the content-addressed store, hash-verified

154}
155
156function SelectScrollDownButton({
157 className,
158 ...props
159}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>) {
160 return (
161 <SelectPrimitive.ScrollDownButton
162 data-slot="select-scroll-down-button"
163 className={cn(
164 "flex cursor-default items-center justify-center py-1",
165 className
166 )}
167 {...props}
168 >
169 <ChevronDownIcon className="size-4" />
170 </SelectPrimitive.ScrollDownButton>
171 )
172}
173
174export {
175 Select,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected