UNPKG

react-animarker

Version:
14 lines 594 B
import React from "react"; interface AnimarkerProps extends React.HTMLAttributes<HTMLElement> { children: React.ReactNode; color?: string; bgColor?: string; transition?: "ease" | "ease-out" | "ease-in-out" | "linear" | string; duration?: number; className?: string; ref?: React.RefObject<HTMLElement> | null; style?: React.CSSProperties; } export declare const Animarker: React.MemoExoticComponent<({ children, bgColor, color, duration, transition, className, ref, ...props }: AnimarkerProps) => React.JSX.Element>; export {}; //# sourceMappingURL=index.d.ts.map