Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
connectkit / build / components / Pages / About / graphics.d.ts
Size: Mime:
/// <reference types="react" />
import { EasingFunction } from 'framer-motion';
export declare type Easing = [number, number, number, number] | 'linear' | 'easeIn' | 'easeOut' | 'easeInOut' | 'circIn' | 'circOut' | 'circInOut' | 'backIn' | 'backOut' | 'backInOut' | 'anticipate' | EasingFunction;
declare type Slide = {
    layoutId?: string;
    duration: number;
    ease: Easing;
};
export declare const SlideOne: ({ layoutId, duration, ease }: Slide) => JSX.Element;
export declare const SlideTwo: ({ layoutId, duration, ease }: Slide) => JSX.Element;
export declare const SlideThree: ({ layoutId, duration, ease }: Slide) => JSX.Element;
export {};