import { StyleSheet } from "react-native"; import type { ProgressIndicatorProps } from "./types"; type Size = NonNullable; /** * Bar heights per size. Matches the web `ProgressIndicator` ladder and today's * mobile `ProgressBar` sizing. */ export const sizeHeights: Record = { smaller: 4, small: 8, base: 16, }; export const sizeStyles = StyleSheet.create({ smaller: { height: sizeHeights.smaller }, small: { height: sizeHeights.small }, base: { height: sizeHeights.base }, });