UNPKG

denwa-web-shared

Version:

A shared library for Next.js App Router projects containing reusable components, hooks, schemas, and utilities.

9 lines (8 loc) 413 B
import { MotionProps } from 'motion/react'; import { FC } from '../../../node_modules/react'; import { UseAppearAnimationProps } from '../hooks/use-appear-animation'; type AnimatedDivProps = React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> & MotionProps & { animationConfig?: Partial<UseAppearAnimationProps>; }; export declare const AnimatedDiv: FC<AnimatedDivProps>; export {};