@devlander/styled-components-theme
Version:
Devlander's team utilizes this package during the development of their React Native projects. Its primary purpose is to facilitate code reuse by sharing types across multiple projects that uses the styled-components library.
9 lines (8 loc) • 418 B
TypeScript
import { ViewStyle } from 'react-native';
import { IconNames } from '../../shared/types/icons/icon-names.enum';
import { SecureInputProps } from '../../shared/types/secure-input-props';
export interface SecureInputPropsForNative<ContainerStyleProps = ViewStyle> extends SecureInputProps<ContainerStyleProps> {
secureTextOnIcon?: IconNames;
secureTextOffIcon?: IconNames;
securePressOnChange: () => void;
}