Files
linkwarden/apps/mobile/components/ui/Spinner.tsx
2025-09-03 16:19:43 -04:00

11 lines
281 B
TypeScript

import React, { forwardRef } from "react";
import { RefreshControl, RefreshControlProps } from "react-native";
const Spinner = forwardRef<RefreshControl, RefreshControlProps>(
(props, ref) => {
return <RefreshControl ref={ref} {...props} />;
}
);
export default Spinner;