Answers for "styled components attrs"

5

styled components attrs

export const TextInputElement = styled.TextInput.attrs(props => ({
  placeholderTextColor: props.ColorPlaceholder,
}))`
  font-size: 15px;
  line-height: 18px;
  color: '#000';
`;
Posted by: Guest on May-02-2020

Browse Popular Code Answers by Language