Вот мой компонент, его стиль не применяется, т.е.фон в моем случае для компонента.
import React from 'react';
import styled from 'styled-components'
const TappableButton = (props) => {
return(
<div>
<Button>{props.title}</Button>
</div>)
}
const Button = styled.button`
background: "red";
`;
export default TappableButton;