Styled-components is a powerful library for styling React components using tagged template literals. It allows you to write CSS directly in your JavaScript, making it easier to manage styles in your applications. Let’s explore three diverse examples that demonstrate how to effectively style components using styled-components in React.
In this example, we will create a customizable button component that changes color on hover. This is useful for interactive elements in your UI.
To start, install styled-components if you haven’t already:
npm install styled-components
Now, let’s create a simple button component:
import React from 'react';
import styled from 'styled-components';
const StyledButton = styled.button`
background-color: #007BFF;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
&:hover {
background-color: #0056b3;
}
`;
const Button = () => {
return <StyledButton>Click Me!</StyledButton>;
};
export default Button;
This button starts with a blue background and changes to a darker blue when hovered over. You can easily adjust the colors and sizes to fit your design needs.
In this example, we’ll build a card component that accepts props for dynamic styling. This is great for displaying content in a visually appealing way.
import React from 'react';
import styled from 'styled-components';
const Card = styled.div`
background-color: ${({ bgColor }) => bgColor || 'white'};
color: ${({ textColor }) => textColor || 'black'};
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
`;
const CardComponent = ({ title, content, bgColor, textColor }) => {
return (
<Card bgColor={bgColor} textColor={textColor}>
<h2>{title}</h2>
<p>{content}</p>
</Card>
);
};
export default CardComponent;
Here, the CardComponent
can accept bgColor
and textColor
as props, allowing for more versatility in how it’s used throughout your application. This makes it easier to maintain consistent styling while also allowing for customization.
This example showcases how to create a responsive layout using styled-components. This is particularly useful for ensuring your application looks great on all devices.
import React from 'react';
import styled from 'styled-components';
const Container = styled.div`
display: flex;
flex-direction: column;
padding: 20px;
@media (min-width: 768px) {
flex-direction: row;
}
`;
const Box = styled.div`
flex: 1;
margin: 10px;
padding: 20px;
background-color: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 5px;
`;
const ResponsiveLayout = () => {
return (
<Container>
<Box>Box 1</Box>
<Box>Box 2</Box>
<Box>Box 3</Box>
</Container>
);
};
export default ResponsiveLayout;
In this layout, the Container
adapts to display its child Box
elements in a column on small screens and a row on larger screens. This responsiveness is achieved through media queries defined directly in the styled component.
These examples of styling components with styled-components in React showcase how you can easily create interactive, dynamic, and responsive components in your applications. By utilizing styled-components, you not only enhance your React code’s readability but also improve maintainability and scalability.