fix folder component

This commit is contained in:
2025-07-02 12:20:42 +08:00
parent 23ae416f42
commit 9667065bb3
9 changed files with 33 additions and 17 deletions

View File

@@ -0,0 +1,16 @@
import { Ionicons } from "@expo/vector-icons";
import { MainColor } from "@/constants/color-palet";
import { router } from "expo-router";
const BackButton = () => {
return (
<Ionicons
name="arrow-back"
size={20}
color={MainColor.yellow}
onPress={() => router.back()}
/>
);
};
export default BackButton;