expo-dynamic-image-crop
Version:
Dynamic image cropping component for Expo/React Native with free-form and fixed aspect ratio support
10 lines • 407 B
TypeScript
import { ComponentProps, ReactNode } from "react";
import { ActivityIndicator } from "react-native";
type Props = {
color?: string;
size?: ComponentProps<typeof ActivityIndicator>["size"];
customComponent?: ReactNode;
};
declare function Processing({ color, size, customComponent }: Props): import("react/jsx-runtime").JSX.Element;
export { Processing };
//# sourceMappingURL=Processing.d.ts.map