diff options
Diffstat (limited to 'packages/mobile/components/ui/ActionButton.tsx')
| -rw-r--r-- | packages/mobile/components/ui/ActionButton.tsx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/mobile/components/ui/ActionButton.tsx b/packages/mobile/components/ui/ActionButton.tsx deleted file mode 100644 index c51eb332..00000000 --- a/packages/mobile/components/ui/ActionButton.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { ActivityIndicator, Pressable, PressableProps } from "react-native"; - -export function ActionButton({ - children, - loading, - disabled, - ...props -}: PressableProps & { - loading: boolean; -}) { - if (disabled !== undefined) { - disabled ||= loading; - } else if (loading) { - disabled = true; - } - return ( - <Pressable {...props} disabled={disabled}> - {loading ? <ActivityIndicator /> : children} - </Pressable> - ); -} |
