Files
hipmi-mobile/components/_ShareComponent/TabBarBackground.tsx
Bagasbanuna02 4474b46ff3 Collacoration
Add :
- collaboration page
- collaboration component

Component
Fix:
- Base box : tambah props background

# No Issue
2025-07-23 11:31:58 +08:00

15 lines
338 B
TypeScript

import { AccentColor, MainColor } from "@/constants/color-palet";
import { View } from "react-native";
export default function TabBarBackground() {
return (
<View
style={{
flex: 1,
backgroundColor: MainColor.darkblue,
borderTopWidth: 1,
borderTopColor: AccentColor.blue,
}}
/>
);
}