icns-frontend/components/primary-button/index.ts
2022-12-08 22:36:00 +09:00

23 lines
400 B
TypeScript

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};
cursor: pointer;
`;