UNPKG

react-nice-scroll

Version:

A React library to smooth scroll and scroll-based animations.

10 lines (9 loc) 233 B
import React, { FC } from 'react'; interface FixedElementProps { children: React.ReactNode; top?: number; right?: number; left?: number; } export declare const FixedElement: FC<FixedElementProps>; export {};