UNPKG

@elacity-js/uikit

Version:

React / Material UI Design kit for Elacity project

8 lines (7 loc) 245 B
import React from 'react'; import type { SxProps } from '@mui/system'; interface ScrollbarProps { sx: SxProps; } export default function Scrollbar({ children, sx, ...other }: React.PropsWithChildren<ScrollbarProps>): JSX.Element; export {};