@steambrew/client
Version:
A support library for creating plugins with Millennium.
15 lines (14 loc) • 390 B
TypeScript
import { CSSProperties, FC } from 'react';
export interface MarqueeProps {
play?: boolean;
direction?: 'left' | 'right';
speed?: number;
delay?: number;
fadeLength?: number;
center?: boolean;
resetOnPause?: boolean;
style?: CSSProperties;
className?: string;
children: React.ReactNode;
}
export declare const Marquee: FC<MarqueeProps>;