xxxxxxxxxx
export const TextInputElement = styled.TextInput.attrs(props => ({
placeholderTextColor: props.ColorPlaceholder,
}))`
font-size: 15px;
line-height: 18px;
color: '#000';
`;
xxxxxxxxxx
onst Input = styled.input.attrs({
type: "text"
})`
font-size: 14px;
padding: 2px 5px;
border: 1px solid green;
`