amotify
Version:
UI Component for React,NextJS,esbuild
18 lines (17 loc) • 464 B
TypeScript
/// <reference types="react" />
import { Box } from '../../atoms';
declare namespace FadeIn {
type Input = Box.DefaultInput & {
animationTime?: number;
animationDelay?: number;
};
}
declare const FadeIn: React.FC<FadeIn.Input>;
declare namespace FadeUp {
type Input = Box.DefaultInput & {
animationTime?: number;
animationDelay?: number;
};
}
declare const FadeUp: React.FC<FadeUp.Input>;
export { FadeIn, FadeUp };