import {m} from 'framer-motion'; import clsx from 'clsx'; import {ComponentPropsWithoutRef} from 'react'; import {opacityAnimation} from '../animation/opacity-animation'; interface UnderlayProps extends Omit< ComponentPropsWithoutRef<'div'>, 'onAnimationStart' | 'onDragStart' | 'onDragEnd' | 'onDrag' > { position?: 'fixed' | 'absolute'; className?: string; isTransparent?: boolean; disableInitialTransition?: boolean; } export function Underlay({ position = 'absolute', className, isTransparent = false, disableInitialTransition, ...domProps }: UnderlayProps) { return ( ); }