[React] Extend styles with styled-components in React

Source: Internet
Author: User



In this lesson, you'll learn how to extend styles from the one styled-component to another in a React app. This was helpful when you had a styled-components that was similar but differ in one or more CSs properties.





import styled from ‘styled-components‘;

export const Button = styled.button`
  background-color: #FF851B;
  border-radius: 5px;
  color: white;
  display: block;
  font-weight: bold;
  font-size: 22px;
  padding: 16px 32px;
  text-transform: uppercase;
  margin: 100px auto;
`;

export const HelpButton = styled(Button)`
  background-color: #FF4136;
  margin: 15px;
  position: fixed;
  bottom: 0;
  right: 0;
`;





[React] Extend styles with styled-components in React


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.