@rneui/layout
Version:
Cross Platform React Native UI Toolkit
16 lines (15 loc) • 494 B
TypeScript
import { BoxProps } from './Box';
import { GridItemProps, GridProps } from './Grid';
import { StackProps } from './Stack';
export { BoxProps, GridProps, GridItemProps, StackProps };
export declare const Box: any;
export declare const Stack: any;
export declare const Grid: any;
declare module '@rneui/themed' {
interface ComponentTheme {
Box: Partial<BoxProps>;
Grid: Partial<GridProps>;
GridItem: Partial<GridItemProps>;
Stack: Partial<StackProps>;
}
}