@blockscout/ui-toolkit
Version:
A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects
6 lines (5 loc) • 346 B
TypeScript
export type AnimationType = 'left' | 'fadeIn' | 'none';
export declare const animateLeft: (path: SVGPathElement) => void;
export declare const animateFadeIn: (path: SVGPathElement) => void;
export declare const noneAnimation: (path: SVGPathElement) => void;
export declare const ANIMATIONS: Record<AnimationType, (path: SVGPathElement) => void>;