Add: - app/(application)/(user)/job/ Event: Fix: - app/(application)/(user)/event/(tabs)/_layout.tsx : penggunaan icon terpusat Collaboration: Fix: - app/(application)/(user)/collaboration/(tabs)/_layout.tsx : penggunaan icon terpusat Home Fix: - Penambahan onPres ke job Component Add: - Icon: home, status # No Issue
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
import { ICON_SIZE_SMALL } from "@/constants/constans-value";
|
|
import { Ionicons } from "@expo/vector-icons";
|
|
|
|
export default function IconHome({ color }: { color?: string }) {
|
|
return (
|
|
<>
|
|
<Ionicons name="home" size={ICON_SIZE_SMALL} color={color || "white"} />
|
|
</>
|
|
);
|
|
}
|