= styled.div` font-size: 16px; text-align: center; color: red; ` const MyComponent = () => ( <Title> This text is styled </Title> ) This text is styled
= styled.div` font-size: 16px; text-align: center; color: ${props => props.color}; ` const MyComponent = () => ( <Title color='red'> This text is styled </Title> ) This text is styled