react-scroll-shadow-pro
v1.0.1
Published
Show shadow for hidden content in scrollable area
Downloads
13
Maintainers
Readme
React Scroll Shadow Pro
Show shadow for hidden content in scrollable area.
npm install --save react-scroll-shadow-pro
import { ScrollShadow } from 'react-scroll-shadow-pro';
import { LoremIpsum } from 'react-lorem-ipsum';
function App() {
return (
<ScrollShadow style={{ maxHeight: 300 }}>
<div style={{ padding: 10 }}>
<LoremIpsum p={10} />
</div>
</ScrollShadow>
);
}