import {
AnimatePresence,
HTMLMotionProps,
motion,
useIsPresent,
} from "motion/react"
import { forwardRef, useContext } from "react"
import { maskHeight } from "./Mask"
import { SectionContext } from "./SectionContext"
export interface NumberSymbolProps extends HTMLMotionProps<"span"> {
partKey: string
type: string
children: string
}
export const NumberSymbol = forwardRef(function NumberSymbol(
{ partKey, type, children, ...rest }: NumberSymbolProps,
ref: React.Ref
) {
const isPresent = useIsPresent()
const { justify } = useContext(SectionContext)
return (
{children}
)
})