react-native-thermometer
Version:
A customizable thermometer component for React Native applications
14 lines (13 loc) • 337 B
TypeScript
import { ViewStyle } from "react-native";
export interface ThermometerProps {
temperature: number;
maxTemperature?: number;
width?: number;
height?: number;
style?: ViewStyle;
fillColor?: string;
backgroundColor?: string;
tickColor?: string;
highlightedTickColor?: string;
borderColor?: string;
}