@platformbuilders/react-native-ui
Version:
Platform Builders Shared Components Library
10 lines • 435 B
JavaScript
import styled from 'styled-components/native';
import { TextInputMask } from 'react-native-masked-text';
import { TextInput as TextInputStyle } from '../styles';
const Input = TextInputStyle.withComponent(TextInputMask);
export const TextInput = styled(Input).attrs((props) => ({
placeholderTextColor: props.placeholderTextColor
? props.placeholderTextColor
: '#72727260',
})) ``;
//# sourceMappingURL=styles.js.map