styled components developer mode code example
Example 1: styled components attrs
export const TextInputElement = styled.TextInput.attrs(props => ({
placeholderTextColor: props.ColorPlaceholder,
}))`
font-size: 15px;
line-height: 18px;
color: '#000';
`;
Example 2: styled components webpack config
yarn add -D babel-plugin-styled-components