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).

20 lines 662 B
import { AnimationProps, Transition } from "motion/react"; export interface ListItem { index?: number | string; children?: any; gap?: number; style?: object; align?: "left" | "center" | "right"; change?: string; onClick?: Function; motion: boolean | (AnimationProps & { mode?: "popLayout" | "sync" | "wait" | undefined; transition?: Transition; layoutId?: string; layout?: boolean | "position" | "size" | "preserve-aspect"; fit?: boolean; fix?: boolean; }); } export default function ListItem(props: ListItem): import("react").JSX.Element; //# sourceMappingURL=ListItem.d.ts.map