import {View, ViewProps} from "react-native"; import {Text} from "@/components/common/Text"; 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;