react-textra
Version:
text slider react component
12 lines (11 loc) • 387 B
TypeScript
export declare type AnimateObject = {
translate: {
type: string;
value: number;
unit: string;
};
opacity: number;
};
export declare type Animations = 'simple' | 'rightLeft' | 'leftRight' | 'topDown' | 'downTop' | 'flash' | 'flip' | 'scale' | 'press';
declare const animationStyles: Record<Animations, AnimateObject[]>;
export default animationStyles;