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 693 B
import { SwipeProps } from "../../../hooks/useSwipe"; export interface Row { children?: any; title?: string; style?: object; gap?: number; change?: string | false; align?: "left" | "center" | "middle" | "right" | "stretch"; show?: "desktop" | "laptop" | "tablet" | "mobile"; hide?: "desktop" | "laptop" | "tablet" | "mobile"; responsive?: "desktop" | "laptop" | "tablet" | "mobile"; reverse?: boolean; fill?: boolean; fit?: boolean; fix?: boolean; swipe?: SwipeProps; layout?: boolean | "position" | "size" | "preserve-aspect"; } export default function Row(props: Row): import("react").JSX.Element; //# sourceMappingURL=Row.d.ts.map