Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 343 Bytes

File metadata and controls

15 lines (11 loc) · 343 Bytes

react-native-app-helpers/ImageBackgroundProps

Props to be given to image background components.

Usage

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

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