UNPKG

@mobily/stacks

Version:

⚡ A set of useful components to help you build and maintain React Native (Web too) layouts with ease.

13 lines (11 loc) 342 B
// @flow import type * as React from "react"; import type type { responsiveProp as ResponsiveProp } from "./Stacks_types.gen"; export type Props = { +columns?: ResponsiveProp<number>, +gutter?: ResponsiveProp<number>, +margin?: ResponsiveProp<number>, +opacity?: number, ... }; declare export var make: React.ComponentType<Props>;