UNPKG

@brizy/ui

Version:
5 lines (4 loc) 354 B
import React, { forwardRef } from "react"; export const CustomGridScroller = forwardRef(function GridScroller({ children, style, "data-virtuoso-scroller": dataVirtuosoScroller, tabIndex }, ref) { return (React.createElement("div", { style: style, ref: ref, "data-virtuoso-scroller": dataVirtuosoScroller, "data-tabindex": tabIndex }, children)); });