feat(Marquee): Add Marquee component (#63)

This commit is contained in:
Jozen Blue Martinez
2022-12-11 22:44:50 +08:00
committed by GitHub
parent 14c5210931
commit 925ea8c3ce
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import { FC, CSSProperties } from 'react';
import { findModuleChild } from '../webpack';
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;
}
const Marquee: FC<MarqueeProps> = findModuleChild((m) => {
if (typeof m !== 'object') return;
for (const prop in m) {
if (m[prop]?.toString && m[prop].toString().includes('.Marquee') && m[prop].toString().includes('--fade-length')) {
return m[prop];
}
}
return;
});
export default Marquee;

View File

@@ -7,6 +7,7 @@ export * from './Field';
export * from './Focusable';
export * from './FocusRing';
export * from './FooterLegend';
export * from './Marquee';
export * from './Menu';
export * from './Modal';
export * from './Panel';