import React from 'react'; import { PixelScrollArea } from './PixelScrollArea'; export function Default() { return ( {Array.from({ length: 12 }).map((_, i) => ( Scroll item {i + 1} ))} ); } export function AlwaysVisible() { return ( {Array.from({ length: 10 }).map((_, i) => ( Row {i + 1} ))} ); } export function CustomScrollbarSize() { return ( {Array.from({ length: 10 }).map((_, i) => ( Hover row {i + 1} ))} ); }
Scroll item {i + 1}
Row {i + 1}
Hover row {i + 1}