diff options
Diffstat (limited to 'packages/mobile/components/ui/ActionButton.tsx')
| -rw-r--r-- | packages/mobile/components/ui/ActionButton.tsx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/mobile/components/ui/ActionButton.tsx b/packages/mobile/components/ui/ActionButton.tsx new file mode 100644 index 00000000..c51eb332 --- /dev/null +++ b/packages/mobile/components/ui/ActionButton.tsx @@ -0,0 +1,21 @@ +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> + ); +} |
