import React from "react"; import { View, ScrollView } from "react-native"; import { Title } from "react-native-paper"; import { createStyles } from "~/theme"; import TelButton from "./TelButton"; export default function NumberLinks() { const styles = useStyles(); return ( Numéros d'urgences, d'écoute, d'information et d'orientation Centres Antipoison ); } const useStyles = createStyles(({ wp, hp, scaleText, theme: { colors } }) => ({ scrollView: { flex: 1, paddingVertical: 15, paddingHorizontal: 15 }, container: { flexDirection: "column", }, title: { fontSize: 20, fontWeight: "bold", marginVertical: 15, width: "100%", textAlign: "center", }, disclaimer: { fontSize: 20, color: colors.danger, fontWeight: "bold", marginBottom: 25, paddingHorizontal: 30, width: "100%", textAlign: "center", }, section: { flexDirection: "column", alignItems: "center", justifyContent: "center", marginVertical: 15, }, }));