UNPKG

react-native-ios-utilities

Version:
16 lines (12 loc) 380 B
import type { DynamicColor } from "../MiscTypes"; /** Maps to `UIImage.RenderingMode`*/ export type ImageRenderingModes = 'automatic' | 'alwaysOriginal' | 'alwaysTemplate'; /** `UIImage`-related */ export type UIImageConfig = { tint?: string | DynamicColor; renderingMode?: ImageRenderingModes; }; export type ImageOptions = UIImageConfig & { cornerRadius?: number };