UNPKG

react-simple-marquee

Version:

Marquee build with React and CSS animation

9 lines (8 loc) 273 B
import React, { CSSProperties } from "react"; export interface MarqueeProps { speed?: number; style?: CSSProperties; direction?: "left-right" | "right-left" | "top-bottom" | "bottom-top"; } declare const Marquee: React.FC<MarqueeProps>; export default Marquee;