import type { GlobalTheme } from '../global'; const getRefreshControlTheme = (theme: GlobalTheme) => { const colors = { indicator: theme.colors.primary, }; return { colors }; }; export default getRefreshControlTheme;