@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).
12 lines • 442 B
TypeScript
import { Swipe } from "../../../../hooks/useSwipe";
import { type SlideContent as Content } from "./SlideContent";
export interface SlideContainer {
contents?: Content[];
vertical?: boolean;
offset?: number;
unit?: "%" | "vw" | "vh" | "em" | "rem";
style?: object;
swipe?: Swipe;
}
export default function SlideContainer(props: SlideContainer): import("react").JSX.Element;
//# sourceMappingURL=SlideContainer.d.ts.map