Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 310 Bytes

File metadata and controls

15 lines (11 loc) · 310 Bytes

react-native-app-helpers/PaddingProps

Props to be given to padding components.

Usage

import type { PaddingProps } from "react-native-app-helpers";
import { Text } from "react-native";

const example: PaddingProps = {
  size: "fillsContainer",
  children: <Text>Example Children</Text>,
};