@steambrew/client
Version:
A support library for creating plugins with Millennium.
16 lines (15 loc) • 411 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;
}
/** @component React Components */
export declare const Marquee: FC<MarqueeProps>;