This commit is contained in:
HeesungB
2022-12-06 19:41:38 +09:00
parent 3b1b8db352
commit 047c9d6af8
9 changed files with 299 additions and 14 deletions
+20
View File
@@ -0,0 +1,20 @@
import styled from "styled-components";
import color from "../../styles/color";
export const PrimaryButton = styled.button`
width: 100%;
height: 100%;
border: none;
background-color: ${color.primary};
padding: 11px 30px;
font-family: "Inter", serif;
font-style: normal;
font-weight: 600;
font-size: 1.5rem;
line-height: 20px;
color: ${color.orange};
`;