diff --git a/packages/react-dom/src/FadeIn.tsx b/packages/react-dom/src/FadeIn.tsx index 457de9855..f3608fdd1 100644 --- a/packages/react-dom/src/FadeIn.tsx +++ b/packages/react-dom/src/FadeIn.tsx @@ -1,7 +1,7 @@ import { type CSSProperties, type ComponentPropsWithoutRef, type ElementType } from 'react' import { useInView } from './useInView' -type FadInBaseProps = { +type FadeInBaseProps = { delay?: number duration?: number timingFunction?: CSSProperties['animationTimingFunction'] @@ -9,7 +9,7 @@ type FadInBaseProps = { type FadeInProps = { as?: TAs } & Omit, 'as' | keyof FadInBaseProps> & - FadInBaseProps + FadeInBaseProps export function FadeIn({ as,