/** * @author linhd * @date 2024/12/13 11:15 * @description 自定义滚动条 */ import React, { FunctionComponent } from 'react'; import './index.scss'; interface Props { /** 样式class */ className?: string; /** style */ style?: React.CSSProperties; /** 模式 横 竖 */ type?: 'horizontal' | 'vertical'; /** 滚动总长 */ scrollTotalLength?: number; /** 大小 */ size?: 'small' | 'medium' | 'large'; /** 颜色 */ color?: 'deep' | 'light'; /** 外部滚动距离 */ scrollLength?: number; /** 滚动事件 */ onScroll?: (val: number) => void; } declare const ScrollBar: FunctionComponent; export default ScrollBar;