target child based on class styled components 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: next js styled components classname did not match
{
"presets": ["next/babel"],
"plugins": [["styled-components", { "ssr": true }]]
}