MCPcopy Create free account
hub / github.com/Codehagen/Badget / SelectScrollUpButton

Function SelectScrollUpButton

src/components/ui/select.tsx:138–154  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>)

Source from the content-addressed store, hash-verified

136}
137
138function SelectScrollUpButton({
139 className,
140 ...props
141}: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) {
142 return (
143 <SelectPrimitive.ScrollUpButton
144 data-slot="select-scroll-up-button"
145 className={cn(
146 "flex cursor-default items-center justify-center py-1",
147 className
148 )}
149 {...props}
150 >
151 <ChevronUpIcon className="size-4" />
152 </SelectPrimitive.ScrollUpButton>
153 )
154}
155
156function SelectScrollDownButton({
157 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected