import React from 'react'; import { ActivityIndicator as ReactNativeActivityIndicator } from 'react-native'; import type { ActivityIndicatorProps } from '../../../../types/activity-indicator'; import { withZoraThemeScope } from '../../../theme/adapters/inbound/withZoraThemeScope'; import { useZoraTheme } from '../../../theme/composition/useZoraTheme'; /*** Render native loading feedback with a semantic ZORA fallback color. */ function ActivityIndicatorInner({ themeId: _themeId, mode: _mode, color, ...props }: ActivityIndicatorProps) { const { theme } = useZoraTheme(); return ; } /*** Native activity indicator exposed as a serializable ZORA feedback node. */ export const ActivityIndicator = withZoraThemeScope(ActivityIndicatorInner);