Function
SelectScrollDownButton
({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>)
Source from the content-addressed store, hash-verified
| 156 | } |
| 157 | |
| 158 | function SelectScrollDownButton({ |
| 159 | className, |
| 160 | ...props |
| 161 | }: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>) { |
| 162 | return ( |
| 163 | <SelectPrimitive.ScrollDownButton |
| 164 | data-slot="select-scroll-down-button" |
| 165 | className={cn( |
| 166 | "flex cursor-default items-center justify-center py-1", |
| 167 | className |
| 168 | )} |
| 169 | {...props} |
| 170 | > |
| 171 | <ChevronDownIcon className="size-4" /> |
| 172 | </SelectPrimitive.ScrollDownButton> |
| 173 | ) |
| 174 | } |
| 175 | |
| 176 | export { |
| 177 | Select, |
Callers
nothing calls this directly
Tested by
no test coverage detected