web-scrolling-text
Version:
A lightweight, customizable text animation library for creating smooth scrolling text effects with support for React, Next.js, Angular and vanilla JavaScript
10 lines (9 loc) • 303 B
TypeScript
import React from "react";
import type { ScrollingType, OptionsType } from "../core";
interface ScrollingTextProps {
options?: OptionsType;
ref?: React.Ref<ScrollingType>;
children?: React.ReactNode;
}
declare const ScrollingText: React.FC<ScrollingTextProps>;
export default ScrollingText;