UNPKG

@viktorvojtek/react-native-simple-components

Version:

Collection of essential UI components based on react-native components

24 lines (23 loc) 665 B
import { ColorValue, ViewStyle } from "react-native"; export type MarginProps = { m?: number | string; ml?: number | string; mt?: number | string; mr?: number | string; mb?: number | string; mx?: number | string; my?: number | string; }; export type PaddingProps = { p?: number | string; pl?: number | string; pt?: number | string; pr?: number | string; pb?: number | string; px?: number | string; py?: number | string; }; export type ViewStyleProps = { bgColor?: ColorValue; } & MarginProps & PaddingProps & ViewStyle; export default function mapShortStyleProps(styleProps: ViewStyleProps): ViewStyle[];