Styled Components
Install
Using
1. import
import styled from "styled-components";2. Create styled components
const Father = styled.div`
display: flex;
`;
const Btn = styled.button`
color: white;
background-color: tomato;
border: 0;
border-radius: 15px;
`;
}3. Adapting and Extending
4. 'As' and Attrs
5. Animations and Pseudo Selectors
Themes
Last updated