22 lines
378 B
TypeScript
22 lines
378 B
TypeScript
import styled from 'styled-components'
|
|
|
|
export const FaqButtonView1 = styled.button`
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-top: 40px;
|
|
margin-left: 65px;
|
|
width: 320px;
|
|
height: 45px;
|
|
cursor: pointer;
|
|
background: #DDDDDD;
|
|
border-radius: 8px;
|
|
border-style: none;
|
|
|
|
font-family: 'Poppins';
|
|
font-size: 90%;
|
|
|
|
|
|
color: #6A707E;
|
|
`
|