@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) • 330 B
TypeScript
import * as React from 'react';
import type { breakpoint as Breakpoint } from './Stacks_types.gen';
export declare type Props = {
readonly breakpoints?: Breakpoint[];
readonly children: React.ReactNode;
readonly debug?: boolean;
readonly spacing?: number;
};
export declare const make: React.ComponentType<Props>;