Function
SelectScrollDownButton
({
className,
...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>)
Source from the content-addressed store, hash-verified
| 177 | } |
| 178 | |
| 179 | function 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 | |
| 197 | export { |
| 198 | Select, |
Callers
nothing calls this directly
Tested by
no test coverage detected