import { StyleSheet, Text, View } from "react-native"; import { MeasurementInputProps } from "./MeasurementInput"; import MeasurementUnitInput, { MeasurementUnitInputProps, } from "./MeasurementUnitInput"; import { SvgUri } from "react-native-svg"; import { Length } from "convert"; export type HelpfulMeasurementUnitInputParams = MeasurementUnitInputProps & { svgUri: string; label: string; unitChoices?: Length[]; }; export function HelpfulMeasurementUnitInput( props: HelpfulMeasurementUnitInputParams ) { return ( {props.label} ); } const styles = StyleSheet.create({});