@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
14 lines (13 loc) • 458 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { ScrollArea } from '@mantine/core';
import { forwardRef } from 'react';
export const FacetScrollArea = /*#__PURE__*/ forwardRef(({ style, children, ...others }, ref)=>/*#__PURE__*/ _jsx(ScrollArea, {
...others,
style: {
width: '100%',
...style
},
viewportRef: ref,
children: children
}));
//# sourceMappingURL=FacetScrollArea.js.map