UNPKG

react-native-ios-utilities

Version:

Utilities for react-native + iOS and wrappers for using swift together with fabric/paper + JSI

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 };