UNPKG

@coinmeca/ui

Version:

This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

15 lines 564 B
import { AnimationProps, Transition } from "motion/react"; import { type Text as Props } from "./Text"; export interface TextMotion extends AnimationProps { mode?: "popLayout" | "sync" | "wait" | undefined; gap?: number; transition?: Transition; layoutId?: string; layout?: boolean | "position" | "size" | "preserve-aspect"; fit?: boolean; fix?: boolean; } export default function TextMotion(props: Props & { children?: string | number | (string | number)[]; }): import("react").JSX.Element; //# sourceMappingURL=TextMotion.d.ts.map