rani-motion
Version:
A simple and powerful React animation library with TypeScript support - animated.div style components with accessibility-first approach
11 lines • 376 B
TypeScript
import { CSSProperties, ReactNode } from 'react';
import { HoverPresetType, CustomHoverAnimation } from '../../types';
export interface RaniHoverProps {
children: ReactNode;
animation?: HoverPresetType;
customAnimation?: CustomHoverAnimation;
duration?: number;
className?: string;
style?: CSSProperties;
}
//# sourceMappingURL=types.d.ts.map