"use client"; import { memo } from "react"; import { ScrollbarView } from "./Scrollbar.view"; import type { ScrollbarProps } from "./Scrollbar.types"; /** * Figma: "Utility / Scrollbar" (TODO(figma)). * Custom-styled scrollable wrapper. Most surfaces should attach * `SCROLLBAR_DESIGN_CLASS` directly instead of nesting through this view. */ const ScrollbarContainer = memo((props) => { return ; }); ScrollbarContainer.displayName = "Scrollbar"; export default ScrollbarContainer;