import { type FC } from "react"; import { TouchableOpacity } from "react-native"; import { StyledView } from "../StyledComponents"; import { horizontalScale, verticalScale } from "../../helpers/ResponsiveCalculations"; import type { MenuItemProps } from "../../types"; const MenuItem: FC = ({ paddingV = 11, paddingH = 17, gap = 12, itemStyle, children, ...rest }) => { return (<> {children} ) } export default MenuItem; export type { MenuItemProps };