You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.8 KiB
41 lines
1.8 KiB
import * as React from 'react' |
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area' |
|
|
|
import { cn } from '@/lib/utils' |
|
|
|
const ScrollArea = React.forwardRef< |
|
React.ElementRef<typeof ScrollAreaPrimitive.Root>, |
|
React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> & { scrollBarClassName?: string } |
|
>(({ className, scrollBarClassName, children, ...props }, ref) => ( |
|
<ScrollAreaPrimitive.Root className={cn('relative overflow-hidden', className)} {...props}> |
|
<ScrollAreaPrimitive.Viewport ref={ref} className="h-full min-h-0 w-full rounded-[inherit]"> |
|
{children} |
|
</ScrollAreaPrimitive.Viewport> |
|
<ScrollBar className={scrollBarClassName} /> |
|
<ScrollAreaPrimitive.Corner /> |
|
</ScrollAreaPrimitive.Root> |
|
)) |
|
ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName |
|
|
|
const ScrollBar = React.forwardRef< |
|
React.ElementRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>, |
|
React.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.ScrollAreaScrollbar> |
|
>(({ className, orientation = 'vertical', ...props }, ref) => ( |
|
<ScrollAreaPrimitive.ScrollAreaScrollbar |
|
ref={ref} |
|
orientation={orientation} |
|
className={cn( |
|
'flex touch-none select-none transition-colors', |
|
'data-[state=hidden]:opacity-0 data-[state=hidden]:pointer-events-none data-[state=hidden]:hidden', |
|
orientation === 'vertical' && 'h-full w-2.5 border-l border-l-transparent p-[1px]', |
|
orientation === 'horizontal' && 'h-2.5 flex-col border-t border-t-transparent p-[1px]', |
|
className |
|
)} |
|
{...props} |
|
> |
|
<ScrollAreaPrimitive.ScrollAreaThumb className="relative flex-1 rounded-full bg-border" /> |
|
</ScrollAreaPrimitive.ScrollAreaScrollbar> |
|
)) |
|
ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName |
|
|
|
export { ScrollArea, ScrollBar }
|
|
|