blob: 592bac97e8c33123b866aee0b7dc5a5fc36da8a1 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import { ImageStyle, StyleProp } from "react-native"
import { WallpaperPresets } from "./wallpaper.presets"
export interface WallpaperProps {
/**
* An optional style override useful for padding & margin.
*/
style?: StyleProp<ImageStyle>
/**
* An optional background image to override the default image.
*/
backgroundImage?: string
/**
* One of the different types of wallpaper presets.
*/
preset?: WallpaperPresets
}
|