UNPKG

@clxx/rolling-notice

Version:

Scroll to notice

10 lines (9 loc) 395 B
/// <reference types="react" /> export interface RollingNoticeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> { list?: Array<React.ReactNode>; height?: string | number; fontSize?: string | number; duration?: number; bubbleDuration?: number; } export declare function RollingNotice(props: RollingNoticeProps): JSX.Element;