Ad
Extending Styled Components Properties?
H1.js
export default styled.h1`
margin: 0px;
color: white;
`;
I want to change the color of this component, and I tried
import H1 from "./H1";
const ColoredH1 = styled(H1)`
color: "black"
`;
But this is not changing the color of the H1?
Ad
Answer
Don't use "black"
with quotes, remember that you write CSS within the styled-component
, therefore "black" isn't a valid color, although black
do.
const ColoredH1 = styled(H1)`
/* color: "black"; */ /* Invalid Color */
color: black; /* Valid Color */
color: ${"black"} /* Or use a valid color representation as String */
`;
Ad
source: stackoverflow.com
Related Questions
- → Import statement and Babel
- → should I choose reactjs+f7 or f7+vue.js?
- → Uncaught TypeError: Cannot read property '__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED' of undefined
- → .tsx webpack compile fails: Unexpected token <
- → React-router: Passing props to children
- → ListView.DataSource looping data for React Native
- → React Native with visual studio 2015 IDE
- → Can't test submit handler in React component
- → React + Flux - How to avoid global variable
- → Webpack, React & Babel, not rendering DOM
- → How do I determine if a new ReactJS session and/or Browser session has started?
- → Alt @decorators in React-Native
- → How to dynamically add class to parent div of focused input field?
Ad