icns-frontend/components/secondary-button/index.tsx

25 lines
459 B
TypeScript
Raw Normal View History

2022-12-17 16:51:29 +00:00
import styled from "styled-components";
import color from "../../styles/color";
export const SecondaryButton = styled.button`
width: 100%;
height: 100%;
border: none;
padding: 11px 30px;
font-family: "Inter", serif;
font-style: normal;
2022-12-18 13:47:24 +00:00
font-weight: 400;
font-size: 1rem;
line-height: 1.025rem;
2022-12-17 16:51:29 +00:00
letter-spacing: 0.07em;
text-transform: uppercase;
2022-12-18 13:47:24 +00:00
color: ${color.grey["200"]};
background-color: transparent;
2022-12-17 16:51:29 +00:00
cursor: pointer;
`;