import { Dimensions } from "react-native"; const { width } = Dimensions.get("window"); const scale = Math.min(Math.max(width / 430, 0.9), 1.15); export const rs = (value: number): number => Math.round(value * scale);