@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 361 B
TypeScript
import type { Target } from 'ahooks/lib/useScroll';
import type { BackTopProps } from 'antd';
import type { CSSProperties } from 'react';
export interface BackBottomProps {
className?: string;
onClick?: BackTopProps['onClick'];
style?: CSSProperties;
target: Target;
text?: string;
visibilityHeight?: BackTopProps['visibilityHeight'];
}