@mobily/stacks
Version:
⚡ A set of useful components to help you build and maintain React Native (Web too) layouts with ease.
10 lines (9 loc) • 366 B
TypeScript
import * as React from 'react';
import type { responsiveProp as ResponsiveProp } from './Stacks_types.gen';
export declare type Props = {
readonly columns?: ResponsiveProp<number>;
readonly gutter?: ResponsiveProp<number>;
readonly margin?: ResponsiveProp<number>;
readonly opacity?: number;
};
export declare const make: React.ComponentType<Props>;