import React, { FC } from "react"; import { Ionicons } from "@expo/vector-icons"; import { TouchableOpacity } from "react-native"; type SimpleDotProps = { active: boolean; onPress: () => void; }; export const SimpleDot: FC = (props) => { const { active, onPress } = props; return ( ); };