2022이전/React
REACT_styled-components
바로퇴장
2020. 1. 22. 16:13
yarn add styled-components
컴포넌트 스타일링하는 데 제일 각광받고 있는 패키지 styled-components
가 있다.
import React from "react";
import styled from "styled-components";
import PropTypes from "prop-types";
const Container = styled.button`
width: 100%;
border: 0;
border-radius: ${props => props.theme.borderRadius};
color: white;
font-weight: 600;
background-color: ${props => props.theme.blueColor};
text-align: center;
padding: 7px 0px;
font-size: 14px;
cursor: pointer;
`;
const Button = ({ text, onClick }) => (
<Container onClick={onClick}>{text}</Container>
);
Button.propTypes = {
text: PropTypes.string.isRequired
};
export default Button;