react-native-material-elements
Version:
React native material elements is a sophisticated UI library crafted to enhance your React Native development workflow. Designed for simplicity and elegance, nex-ui provides a rich collection of components and utilities to effortlessly create polished mob
13 lines (11 loc) • 459 B
TypeScript
import React from 'react';
import { ActivityIndicator } from 'react-native';
import { Theme } from '../../libraries/themes/types';
import { VariantTypes } from '../../utils';
export interface ActivityIndicatorProps extends React.ComponentPropsWithRef<typeof ActivityIndicator> {
variant?: VariantTypes;
switchMode?: boolean;
}
export interface GetActivityIndicatorColor extends Pick<ActivityIndicatorProps, 'variant' | 'switchMode'> {
colors: Theme;
}