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