Styled Components
npm i styled-componentsimport styled from "styled-components";
const Button = styled.button`
padding: 8px 12px;
font-size: 1rem;
border-radius: 2px;
min-width: 100px;
cursor: pointer;
font-family: "Roboto Mono", monospace;
`;
const PrimaryButton = styled(Button)`
background-color: red;
border: none;
color: white;
`;Last updated