@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
14 lines (13 loc) • 432 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { CSSProperties, ReactNode } from "react";
export interface NoticeBarProps extends ViewProps {
className?: string;
style?: CSSProperties;
delay?: number;
speed?: number;
scrollable?: boolean;
wordwrap?: boolean;
children?: ReactNode;
}
declare function NoticeBar(props: NoticeBarProps): JSX.Element;
export default NoticeBar;