@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 • 500 B
TypeScript
export interface Col {
children?: any;
title?: string;
gap?: number | false;
align?: "left" | "center" | "right" | "stretch";
style?: object;
fit?: boolean;
fill?: boolean;
show?: "desktop" | "laptop" | "tablet" | "mobile";
hide?: "desktop" | "laptop" | "tablet" | "mobile";
responsive?: "desktop" | "laptop" | "tablet" | "mobile";
reverse?: boolean;
}
export default function Col(props: Col): import("react").JSX.Element;
//# sourceMappingURL=Col.d.ts.map