styled-components で作ったコンポーネントのスタイルの上書きができない場合の解決策
styled-components でスタイリングしたコンポーネントがあります const StyledButton = styled.button` border-radius: 6px; padding: 16px; background-color: coral; color: white; font-size: 1.5rem; font-weight: bold; ` export default StyledButton あらかわいい このコンポーネントを styled の引数に入れることでスタイルの上書きができます import Styl...