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}

))}
); }