UNPKG

@quanxi/ui

Version:

全悉组件库

11 lines (10 loc) 302 B
import React, { CSSProperties } from 'react'; import './style.scss'; export type BackTopProps = { style?: CSSProperties; className?: string; target: string; visibilityHeight?: number; children?: React.ReactNode; }; export default function Backtop(props: BackTopProps): JSX.Element;