Files
mobile-darmasaba/components/wrapTab.tsx
amaliadwiy 064a8ccaad upd: redesign aplikasi
Deskripsi:
- update home, profile dll
- blm selesai

NO Issues
2026-02-10 17:32:56 +08:00

16 lines
428 B
TypeScript

import Styles from "@/constants/Styles";
import { useTheme } from "@/providers/ThemeProvider";
import { View } from "react-native";
type Props = {
children: React.ReactNode
}
export default function WrapTab({ children }: Props) {
const { colors } = useTheme()
return (
<View style={[Styles.wrapBtnTab, { backgroundColor: colors.card, borderColor: colors.icon + '20' }]}>
{children}
</View>
)
}