native-base
Version:
Essential cross-platform UI components for React Native
14 lines (13 loc) • 510 B
TypeScript
import type * as CSS from 'csstype';
import type { CustomProps } from '../../types/utils';
import type { InterfaceBoxProps } from '../Box/types';
export declare type IGridItemProps = (InterfaceBoxProps<IGridItemProps> & {
gap?: CSS.Property.Gap;
rowSpan?: number;
colSpan?: number;
colStart?: CSS.Property.GridColumnStart;
colEnd?: CSS.Property.GridColumnEnd;
rowStart?: CSS.Property.GridColumnStart;
rowEnd?: CSS.Property.GridColumnEnd;
area?: string;
}) & CustomProps<'Box'>;