Add: - app-information/information-bank/ Component Fix: - constans-value: Icon size re name ### No Issue
13 lines
401 B
TypeScript
13 lines
401 B
TypeScript
import ActionIcon from "@/components/ActionIcon/ActionIcon";
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
import { router } from "expo-router";
|
|
|
|
export default function AdminBackButton() {
|
|
return (
|
|
<ActionIcon
|
|
icon={<Ionicons name="arrow-back" size={16} color={MainColor.darkblue} />}
|
|
onPress={() => router.back()}
|
|
/>
|
|
);
|
|
} |