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