UNPKG

@nutui/nutui-react

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

11 lines (10 loc) 399 B
import { default as React, FunctionComponent } from 'react'; import { BasicComponent } from '../../utils/typings'; export interface StickyProps extends BasicComponent { container: React.RefObject<HTMLElement>; position: 'top' | 'bottom'; threshold: number; zIndex: number; onChange: (val: boolean) => void; } export declare const Sticky: FunctionComponent<Partial<StickyProps>>;