xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
14 lines • 693 B
TypeScript
export interface ContainerTextFlipProps {
/** Array of words to cycle through in the animation */
words?: string[];
/** Time in milliseconds between word transitions */
interval?: number;
/** Additional CSS classes to apply to the container */
className?: string;
/** Additional CSS classes to apply to the text */
textClassName?: string;
/** Duration of the transition animation in milliseconds */
animationDuration?: number;
}
export declare function ContainerTextFlip({ words, interval, className, textClassName, animationDuration, }: ContainerTextFlipProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=container-text-flip.d.ts.map