import { Text } from "@/components/common/Text"; import { View, type ViewProps } from "react-native"; const DisabledSetting: React.FC< { disabled: boolean; showText?: boolean; text?: string } & ViewProps > = ({ disabled = false, showText = true, text, children, ...props }) => ( {disabled && showText && ( {text ?? "Currently disabled by admin."} )} {children} ); export default DisabledSetting;