import { View, type 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 }) => ( {children} {disabled && showText && ( {text ?? "Disabled by admin"} )} ); export default DisabledSetting;